class AngazeController extends Controller
{
function preActions()
{
$inicjaly = PracownikPeer::doSelect();
$inicjaly = array_1dim_to_2dimH($inicjaly, 5);
$this->set('inicjalypracownikow', $inicjaly['items']);
$this->set('kierunki', KierunekPeer::doSelect());
}
public function customOutputTranslations()
{
$re = '/^\s+/m';
$this->output = preg_replace($re, '', $this->output);
$re = '/s+$/m';
$this->output = preg_replace($re, '', $this->output);
$this->output = str_replace("\r\n", '', $this->output);
}
}