• FICHEIRO: /home/axtion/www/application/Galeria/Controller.php
  • LINHA:    119
  • MENSAGEM: Trying to get property of non-object
  •  115.             $this->_imagemModel->limitPage($paginator->getPage(), $paginator->getRowsPerPage());
  •  116.         $this->view->imagens = $this->_imagemModel->fetchAll();
  •  117.         $this->view->detail_url = '/galeria/detail/id/';;
  •  118.         //$titulo = $this->_caminho('0', $categoriaId);
  •  119.         $titulo = $categoria->titulo;
  •  120.         
  •  121.         $breadcrumb = $this->_caminho('0', $this->_session->lastId);        
  •  122.         $this->view->breadcrumb = '<div class="txtbreadcrumb"><a href="' . Goweb::link('/') . '" class="link">'.translate('Homepage').'</a></div><div class="divisoria"></div>'.$breadcrumb;
  •  123.         
  •  124.         // cms

  • FICHEIRO: /home/axtion/www/application/Galeria/Controller.php
  • LINHA:    119
  •  115.             $this->_imagemModel->limitPage($paginator->getPage(), $paginator->getRowsPerPage());
  •  116.         $this->view->imagens = $this->_imagemModel->fetchAll();
  •  117.         $this->view->detail_url = '/galeria/detail/id/';;
  •  118.         //$titulo = $this->_caminho('0', $categoriaId);
  •  119.         $titulo = $categoria->titulo;
  •  120.         
  •  121.         $breadcrumb = $this->_caminho('0', $this->_session->lastId);        
  •  122.         $this->view->breadcrumb = '<div class="txtbreadcrumb"><a href="' . Goweb::link('/') . '" class="link">'.translate('Homepage').'</a></div><div class="divisoria"></div>'.$breadcrumb;
  •  123.         
  •  124.         // cms

  • FICHEIRO: /home/axtion/www/application/Galeria/Controller.php
  • LINHA:    47
  •  43.         } else {
  •  44.             return $this->listImagensAction();
  •  45.         }*/
  •  46.         
  •  47.         return $this->listImagensAction($categoriaId);
  •  48.     }
  •  49.     
  •  50.     /**
  •  51.      * Listagem dos Imagens
  •  52.      */

  • FICHEIRO: /home/axtion/www/application/Galeria/GenericController.php
  • LINHA:    286
  •  282.             } else {
  •  283.                 $this->_helper->viewRenderer->setRender('detail');
  •  284.             }
  •  285.         } else {
  •  286.             return $this->listAction();
  •  287.         }
  •  288.     }
  •  289.
  •  290.     /**
  •  291.      * Listagem dos imagens em Destaque

  • 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.  */