• FICHEIRO: E:\bctl\application\Portfolio\Controller.php
  • LINHA:    5946
  • MENSAGEM: Undefined index: goweb.pt
  •  5942.         // filhos da categoria ( sao os anos )
  •  5943.         $anosModel->reset();
  •  5944.         $anosModel->where('pai_id=?', $cat_id);
  •  5945.         if($ano >= 0)
  •  5946.           $anosModel->where('id IN (?)', $options[$ano]);
  •  5947.         $anos = $anosModel->fetchAll();
  •  5948.
  •  5949.         $this->view->ano = $ano;
  •  5950.
  •  5951.         for($j = 1; $j <= 3; $j++) {

  • FICHEIRO: E:\bctl\application\Portfolio\Controller.php
  • LINHA:    5946
  •  5942.         // filhos da categoria ( sao os anos )
  •  5943.         $anosModel->reset();
  •  5944.         $anosModel->where('pai_id=?', $cat_id);
  •  5945.         if($ano >= 0)
  •  5946.           $anosModel->where('id IN (?)', $options[$ano]);
  •  5947.         $anos = $anosModel->fetchAll();
  •  5948.
  •  5949.         $this->view->ano = $ano;
  •  5950.
  •  5951.         for($j = 1; $j <= 3; $j++) {

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

  • FICHEIRO: E:\bctl\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.  */