• FICHEIRO: /home/etccompt/library/Zend/View/Abstract.php
  • LINHA:    924
  • MENSAGEM: script 'detailtipo.tpl' not found in path (/home/etccompt/views/Galeria/)
  •  920.         require_once 'Zend/View/Exception.php';
  •  921.         $message = "script '$name' not found in path ("
  •  922.                  . implode(PATH_SEPARATOR, $this->_path['script'])
  •  923.                  . ")";
  •  924.         throw new Zend_View_Exception($message, $this);
  •  925.     }
  •  926.
  •  927.     /**
  •  928.      * Applies the filter callback to a buffer.
  •  929.      *

  • FICHEIRO: /home/etccompt/library/Zend/View/Abstract.php
  • LINHA:    827
  •  823.      */
  •  824.     public function render($name)
  •  825.     {
  •  826.         // find the script file name using the parent private method
  •  827.         $this->_file = $this->_script($name);
  •  828.         unset($name); // remove $name from local scope
  •  829.
  •  830.         ob_start();
  •  831.         $this->_run($this->_file);
  •  832.

  • FICHEIRO: /home/etccompt/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    903
  •  899.             $name = $this->getResponseSegment();
  •  900.         }
  •  901.
  •  902.         $this->getResponse()->appendBody(
  •  903.             $this->view->render($script),
  •  904.             $name
  •  905.         );
  •  906.
  •  907.         $this->setNoRender();
  •  908.     }

  • FICHEIRO: /home/etccompt/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    924
  •  920.     public function render($action = null, $name = null, $noController = null)
  •  921.     {
  •  922.         $this->setRender($action, $name, $noController);
  •  923.         $path = $this->getViewScript();
  •  924.         $this->renderScript($path, $name);
  •  925.     }
  •  926.
  •  927.     /**
  •  928.      * Render a script based on specification variables
  •  929.      *

  • FICHEIRO: /home/etccompt/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    963
  •  959.      */
  •  960.     public function postDispatch()
  •  961.     {
  •  962.         if ($this->_shouldRender()) {
  •  963.             $this->render();
  •  964.         }
  •  965.     }
  •  966.
  •  967.     /**
  •  968.      * Should the ViewRenderer render a view script?

  • FICHEIRO: /home/etccompt/library/Zend/Controller/Action/HelperBroker.php
  • LINHA:    277
  •  273.      */
  •  274.     public function notifyPostDispatch()
  •  275.     {
  •  276.         foreach (self::getStack() as $helper) {
  •  277.             $helper->postDispatch();
  •  278.         }
  •  279.     }
  •  280.
  •  281.     /**
  •  282.      * getHelper() - get helper by name

  • FICHEIRO: /home/etccompt/library/Goweb/Controller/Action.php
  • LINHA:    286
  •  282.
  •  283.         // whats actually important here is that this action controller is
  •  284.         // shutting down, regardless of dispatching; notify the helpers of this
  •  285.         // state
  •  286.         $this->_helper->notifyPostDispatch();
  •  287.     }    
  •  288.
  •  289.     /**
  •  290.      * Obter Caracteres especiais usados em windows
  •  291.      *

  • FICHEIRO: /home/etccompt/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/etccompt/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/etccompt/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/etccompt/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.  */