- FICHEIRO: /home/fundacao/library/Zend/View/Abstract.php
- LINHA: 988
- MENSAGEM: script 'categorias.tpl' not found in path (/home/fundacao/views/Galeria/)
- 984. require_once 'Zend/View/Exception.php';
- 985. $message = "script '$name' not found in path ("
- 986. . implode(PATH_SEPARATOR, $this->_path['script'])
- 987. . ")";
- 988. $e = new Zend_View_Exception($message);
- 989. $e->setView($this);
- 990. throw $e;
- 991. }
- 992.
- 993. /**
- FICHEIRO: /home/fundacao/library/Zend/View/Abstract.php
- LINHA: 884
- 880. */
- 881. public function render($name)
- 882. {
- 883. // find the script file name using the parent private method
- 884. $this->_file = $this->_script($name);
- 885. unset($name); // remove $name from local scope
- 886.
- 887. ob_start();
- 888. $this->_run($this->_file);
- 889.
- FICHEIRO: /home/fundacao/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/fundacao/application/Galeria/GenericController.php
- LINHA: 169
- 165. 'categorias.tpl',
- 166. 'Categorias',
- 167. 'galeria-listCategorias',
- 168. $titulo,
- 169. $this->_getParam('print'));
- 170. $this->_helper->viewRenderer->setRender($this->_canal);
- 171. } else {
- 172. $this->_helper->viewRenderer->setRender('categorias');
- 173. }
- 174. }
- FICHEIRO: /home/fundacao/application/Galeria/GenericController.php
- LINHA: 45
- 41. $this->_categoriaModel->where($this->_categoriaModel->getTableName() . '.pai_id = ?', $categoriaId);
- 42. $this->_categoriaModel->where($this->_categoriaModel->getTableName() . '.activo = 1');
- 43. $this->_resultCategorias = $this->_categoriaModel->count();
- 44. if ($this->_resultCategorias > 0) {
- 45. return $this->listCategoriasAction($categoriaId);
- 46. } else {
- 47. return $this->listImagensAction();
- 48. }
- 49. } else {
- 50. return $this->listImagensAction();
- FICHEIRO: /home/fundacao/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/fundacao/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/fundacao/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/fundacao/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/fundacao/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. */