- FICHEIRO: /home/axtion/www/application/Agenda/Controller.php
- LINHA: 569
- MENSAGEM: Undefined variable: categoria
- 565. $this->_categoriaModel->loadForeigns(false);
- 566. $this->_categoriaModel->where($this->_categoriaModel->getTableName() . '.pai_id=?', $categoriaId);
- 567. $this->_categoriaModel->order(array('titulo'));
- 568. $this->view->categorias = $this->_categoriaModel->fetchAll();
- 569. $this->view->categoria = $categoria;
- 570.
- 571. $this->view->paginator = $paginator;
- 572. $this->view->setViewsPath(GENERIC_VIEWS_PATH);
- 573.
- 574. $this->view->paginator_output = $this->view->render('paginator.tpl');
- FICHEIRO: /home/axtion/www/application/Agenda/Controller.php
- LINHA: 569
- 565. $this->_categoriaModel->loadForeigns(false);
- 566. $this->_categoriaModel->where($this->_categoriaModel->getTableName() . '.pai_id=?', $categoriaId);
- 567. $this->_categoriaModel->order(array('titulo'));
- 568. $this->view->categorias = $this->_categoriaModel->fetchAll();
- 569. $this->view->categoria = $categoria;
- 570.
- 571. $this->view->paginator = $paginator;
- 572. $this->view->setViewsPath(GENERIC_VIEWS_PATH);
- 573.
- 574. $this->view->paginator_output = $this->view->render('paginator.tpl');
- FICHEIRO: /home/axtion/www/library/Goweb/Controller/Action.php
- LINHA: 276
- 272. */
- 273. /*if ($this->getInvokeArg('useCaseSensitiveActions')) {
- 274. trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
- 275. }*/
- 276. $this->$action();
- 277. } else {
- 278. $this->__call($action, array());
- 279. }
- 280. $this->postDispatch();
- 281. }
- FICHEIRO: /home/axtion/www/library/Zend/Controller/Dispatcher/Standard.php
- LINHA: 289
- 285. ob_start();
- 286. }
- 287.
- 288. try {
- 289. $controller->dispatch($action);
- 290. } catch (Exception $e) {
- 291. // Clean output buffer on error
- 292. $curObLevel = ob_get_level();
- 293. if ($curObLevel > $obLevel) {
- 294. do {
- FICHEIRO: /home/axtion/www/library/Zend/Controller/Front.php
- LINHA: 946
- 942. /**
- 943. * Dispatch request
- 944. */
- 945. try {
- 946. $dispatcher->dispatch($this->_request, $this->_response);
- 947. } catch (Exception $e) {
- 948. if ($this->throwExceptions()) {
- 949. throw $e;
- 950. }
- 951. $this->_response->setException($e);
- FICHEIRO: /home/axtion/www/library/Goweb/Application.php
- LINHA: 428
- 424. }
- 425.
- 426. public function runApp(){
- 427. $frontController = Zend_Controller_Front::getInstance();
- 428. $frontController->dispatch();
- 429. }
- 430. }
- FICHEIRO: /home/axtion/www/index.php
- LINHA: 53
- 49. $application->initSession('_FRONT', true);
- 50. $application->initPainel();
- 51. $application->initLanguage(isset($_GET['lang']) ? $_GET['lang'] : null, true, false);
- 52. $application->initLanguageAdmin(isset($_GET['lang']) ? $_GET['lang'] : null, true, true);
- 53. $application->runApp();
- 54.
- 55.
- 56. /**
- 57. * Efectua a traducao de uma string.
- 58. */