- FICHEIRO: /home/fundacaoais/views/Noticias/list.tpl
- LINHA: 49
- MENSAGEM: Trying to get property of non-object
- 45. </div>
- 46.
- 47. <div class="col-xs-12 nopadd arquivo">
- 48. <h2 class="line"><span><?php echo translate('Arquivo'); ?></span></h2>
- 49. <h3><?php echo translate('Procure {{$categoria_nome}} no nosso arquivo', $categoria->titulo); ?></h3>
- 50. <?php echo $categoria; ?>
- 51. <div class="anos">
- 52. <?php echo $anos; ?>
- 53. </div>
- 54.
- FICHEIRO: /home/fundacaoais/views/Noticias/list.tpl
- LINHA: 49
- 45. </div>
- 46.
- 47. <div class="col-xs-12 nopadd arquivo">
- 48. <h2 class="line"><span><?php echo translate('Arquivo'); ?></span></h2>
- 49. <h3><?php echo translate('Procure {{$categoria_nome}} no nosso arquivo', $categoria->titulo); ?></h3>
- 50. <?php echo $categoria; ?>
- 51. <div class="anos">
- 52. <?php echo $anos; ?>
- 53. </div>
- 54.
- FICHEIRO: /home/fundacaoais/library/Goweb/View.php
- LINHA: 49
- 45. extract(get_object_vars($this));
- 46. if ($this->_useViewStream && $this->useStreamWrapper()) {
- 47. include 'zend.view://' . func_get_arg(0);
- 48. } else {
- 49. include func_get_arg(0);
- 50. }
- 51. }
- 52.
- 53. /**
- 54. * Escapes a value for output in a view script.
- FICHEIRO: /home/fundacaoais/library/Zend/View/Abstract.php
- LINHA: 888
- 884. $this->_file = $this->_script($name);
- 885. unset($name); // remove $name from local scope
- 886.
- 887. ob_start();
- 888. $this->_run($this->_file);
- 889.
- 890. return $this->_filter(ob_get_clean()); // filter output
- 891. }
- 892.
- 893. /**
- FICHEIRO: /home/fundacaoais/application/Cms/GenericController.php
- LINHA: 2219
- 2215. $view->titulo = $titulo;
- 2216. if(!empty($extraParams)) {
- 2217. $view->extraParams = $extraParams;
- 2218. }
- 2219. $view->output = $view->render($template);
- 2220. $view->setViewsPath(VIEWS_PATH);
- 2221. if ($print)
- 2222. $canal = 'print.tpl';
- 2223. $viewRenderer->setRender(str_replace('.' . $viewRenderer->getViewSuffix(), '', $canal));
- 2224. }
- FICHEIRO: /home/fundacaoais/application/Noticias/Controller.php
- LINHA: 466
- 462. Cms_Controller::renderOutput($this->view,
- 463. 'list.tpl',
- 464. 'Noticias',
- 465. 'noticias-list',
- 466. (isset($categoria) && $categoria ? $categoria->titulo: translate('Notícias')));
- 467. $this->_helper->viewRenderer->setRender($this->_canal);
- 468. }
- 469. }
- 470.
- 471. protected function _caminho($stop_id, $categoria_id, $link = 1, $lastitem = 0) {
- FICHEIRO: /home/fundacaoais/application/Noticias/Controller.php
- LINHA: 278
- 274. $this->_setParam('categoria_id', $this->_categoriaModel->id);
- 275. return $this->listAction();
- 276. }
- 277. }
- 278. return $this->listAction();
- 279. }
- 280.
- 281. public function listAction() {
- 282.
- 283. $page = $this->_request->page > 0 ? $this->_request->page : '1';
- FICHEIRO: /home/fundacaoais/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/fundacaoais/library/Zend/Controller/Dispatcher/Standard.php
- LINHA: 308
- 304. ob_start();
- 305. }
- 306.
- 307. try {
- 308. $controller->dispatch($action);
- 309. } catch (Exception $e) {
- 310. // Clean output buffer on error
- 311. $curObLevel = ob_get_level();
- 312. if ($curObLevel > $obLevel) {
- 313. do {
- FICHEIRO: /home/fundacaoais/library/Zend/Controller/Front.php
- LINHA: 954
- 950. /**
- 951. * Dispatch request
- 952. */
- 953. try {
- 954. $dispatcher->dispatch($this->_request, $this->_response);
- 955. } catch (Exception $e) {
- 956. if ($this->throwExceptions()) {
- 957. throw $e;
- 958. }
- 959. $this->_response->setException($e);
- FICHEIRO: /home/fundacaoais/library/Goweb/Application.php
- LINHA: 449
- 445. }
- 446.
- 447. public function runApp(){
- 448. $frontController = Zend_Controller_Front::getInstance();
- 449. $frontController->dispatch();
- 450. }
- 451. }
- 452.
- FICHEIRO: /home/fundacaoais/public_html/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. */