• FICHEIRO: /home/fne/views/Noticias/list.tpl
  • LINHA:    74
  • MENSAGEM: Undefined variable: paginator_output
  •  70.
  •  71. <br><br>
  •  72.     
  •  73.
  •  74. <?php echo $paginator_output; ?>
  •  75.
  •  76. <!--
  •  77. <div class="loadMore-holder">
  •  78.     <a href="#" id="loadMore">Carregar Mais</a>
  •  79. </div>

  • FICHEIRO: /home/fne/views/Noticias/list.tpl
  • LINHA:    74
  •  70.
  •  71. <br><br>
  •  72.     
  •  73.
  •  74. <?php echo $paginator_output; ?>
  •  75.
  •  76. <!--
  •  77. <div class="loadMore-holder">
  •  78.     <a href="#" id="loadMore">Carregar Mais</a>
  •  79. </div>

  • FICHEIRO: /home/fne/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/fne/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/fne/application/Cms/GenericController.php
  • LINHA:    2270
  •  2266.         $session = Goweb::registry('session');
  •  2267.         $view->id = $session->lastId;
  •  2268.         $view->titulo = $titulo;
  •  2269.         $view->extraParams = $extraParams;
  •  2270.         $view->output = $view->render($template);
  •  2271.         $view->setViewsPath(VIEWS_PATH);
  •  2272.         if ($print)
  •  2273.             $canal = 'print.tpl';
  •  2274.         $viewRenderer->setRender(str_replace('.' . $viewRenderer->getViewSuffix(), '', $canal));
  •  2275.     }

  • FICHEIRO: /home/fne/application/Noticias/Controller.php
  • LINHA:    470
  •  466.         Cms_Controller::renderOutput($this->view,
  •  467.                                     'list.tpl',
  •  468.                                     'Noticias',
  •  469.                                     'noticias-list',
  •  470.                                     (isset($categoria) && $categoria ? $categoria->titulo . $this->_goSeparator . translate('Not&iacute;cias') : translate('Listagem de Not&iacute;cias') ) );
  •  471.         $this->_helper->viewRenderer->setRender($this->_canal);
  •  472.     }
  •  473.     else{
  •  474.       $this->_helper->viewRenderer->setRender('list');
  •  475.     }

  • FICHEIRO: /home/fne/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/fne/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/fne/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/fne/library/Goweb/Application.php
  • LINHA:    449
  •  445.     }
  •  446.
  •  447.     public function runApp(){
  •  448.         $frontController = Zend_Controller_Front::getInstance();
  •  449.         $frontController->dispatch();
  •  450.     }
  •  451. }

  • FICHEIRO: /home/fne/public_html/index.php
  • LINHA:    54
  •  50. $application->initPainel();
  •  51. $lang = isset($_GET['lang']) ? $_GET['lang'] : null;
  •  52. $application->initLanguage($lang, true, false);
  •  53. $application->initLanguageAdmin($lang, true, true);
  •  54. $application->runApp();
  •  55.
  •  56.
  •  57. /**
  •  58.  * Efectua a traducao de uma string.
  •  59.  */