• FICHEIRO: /home/capamodular/library/Zend/Db/Table/Abstract.php
  • LINHA:    839
  • MENSAGEM: Failed saving metadata to metadataCache
  •  835.             // Fetch metadata from the adapter's describeTable() method
  •  836.             $metadata = $this->_db->describeTable($this->_name, $this->_schema);
  •  837.             // If $this has a metadata cache, then cache the metadata
  •  838.             if (null !== $this->_metadataCache && !$this->_metadataCache->save($metadata, $cacheId)) {
  •  839.                 trigger_error('Failed saving metadata to metadataCache', E_USER_NOTICE);
  •  840.             }
  •  841.         }
  •  842.
  •  843.         // Assign the metadata to $this
  •  844.         $this->_metadata = $metadata;

  • FICHEIRO: /home/capamodular/library/Zend/Db/Table/Abstract.php
  • LINHA:    839
  •  835.             // Fetch metadata from the adapter's describeTable() method
  •  836.             $metadata = $this->_db->describeTable($this->_name, $this->_schema);
  •  837.             // If $this has a metadata cache, then cache the metadata
  •  838.             if (null !== $this->_metadataCache && !$this->_metadataCache->save($metadata, $cacheId)) {
  •  839.                 trigger_error('Failed saving metadata to metadataCache', E_USER_NOTICE);
  •  840.             }
  •  841.         }
  •  842.
  •  843.         // Assign the metadata to $this
  •  844.         $this->_metadata = $metadata;

  • FICHEIRO: /home/capamodular/library/Goweb/Db/Model.php
  • LINHA:    1041
  •  1037.      * @return  bool|Goweb_Db_Model_Rowset  Retorna o objecto Goweb_Db_Rowset com os resultados ou
  •  1038.      *                                      FALSE se não foi encontrado nenhuma linha na tabela
  •  1039.      */
  •  1040.     public function fetchAll($cols = null) {
  •  1041.         $this->_setupMetadata();
  •  1042.         if (is_array($cols) && in_array('*', $cols)) {
  •  1043.             unset($cols[array_search('*', $cols)]);
  •  1044.             $cols = array_merge(array_keys($this->_colsModel), $cols);
  •  1045.         }
  •  1046.          

  • FICHEIRO: /home/capamodular/application/Banners/Controller.php
  • LINHA:    387
  •  383.                                 //->where('data_inicio <= ?', date('Y-m-d'))
  •  384.
  •  385.                                 //->where('data_fim >= ?', date('Y-m-d'));
  •  386.
  •  387.                 $result = $this->_bannerModel->fetchAll();
  •  388.
  •  389.
  •  390.
  •  391.                 $listbanner = array();
  •  392.

  • FICHEIRO: /home/capamodular/library/Goweb/Controller/Action.php
  • LINHA:    551
  •  547.                     trigger_error('Using case sensitive actions without word separators is deprecated; please do not rely on this "feature"');
  •  548.
  •  549.                 }*/
  •  550.
  •  551.                 $this->$action();
  •  552.
  •  553.             } else {
  •  554.
  •  555.                 $this->__call($action, array());
  •  556.

  • FICHEIRO: /home/capamodular/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/capamodular/library/Zend/View/Helper/Action.php
  • LINHA:    135
  •  131.                       ->setControllerName($controller)
  •  132.                       ->setActionName($action)
  •  133.                       ->setDispatched(true);
  •  134.
  •  135.         $this->dispatcher->dispatch($this->request, $this->response);
  •  136.
  •  137.         // reset the viewRenderer object to it's original state
  •  138.         Zend_Controller_Action_HelperBroker::addHelper($viewRendererObj);
  •  139.
  •  140.

  • FICHEIRO: /home/capamodular/library/Goweb/View/Helper/Component.php
  • LINHA:    56
  •  52.         $params['directRequest'] = false;
  •  53.
  •  54.         //$controllerName = $this->_formatControllerName($controller);
  •  55.         //$actionName = $this->_formatActionName($action);
  •  56.         $return = $this->action($action, $controller, null, $params);
  •  57.         //goweb::dump($return);
  •  58.         //exit();
  •  59.         return $return;
  •  60.     }
  •  61. }

  • FICHEIRO: /home/capamodular/library/Zend/View/Abstract.php
  • LINHA:    350
  •  346.         // call the helper method
  •  347.         return call_user_func_array(
  •  348.             array($helper, $name),
  •  349.             $args
  •  350.         );
  •  351.     }
  •  352.
  •  353.     /**
  •  354.      * Given a base path, sets the script, helper, and filter paths relative to it
  •  355.      *

  • FICHEIRO: /home/capamodular/views/homepage.tpl
  • LINHA:    38
  •  34.         <div id="content" class="container-fluid">
  •  35.             <?php echo $this->partial('Cms/header.tpl',array('id' => $id)); ?>
  •  36.         </div>
  •  37.         <div class="container-fluid">
  •  38.             <?php echo $this->component('/banners/bannersPagina/pagina_id/'.$id.'/categoria_id/1/isHomepage/1'); ?>
  •  39.         </div>
  •  40.         <div id="content" class="container">
  •  41.             <div id="subcontent">
  •  42.                 <div class="clearfix"></div>
  •  43.

  • FICHEIRO: /home/capamodular/views/homepage.tpl
  • LINHA:    38
  •  34.         <div id="content" class="container-fluid">
  •  35.             <?php echo $this->partial('Cms/header.tpl',array('id' => $id)); ?>
  •  36.         </div>
  •  37.         <div class="container-fluid">
  •  38.             <?php echo $this->component('/banners/bannersPagina/pagina_id/'.$id.'/categoria_id/1/isHomepage/1'); ?>
  •  39.         </div>
  •  40.         <div id="content" class="container">
  •  41.             <div id="subcontent">
  •  42.                 <div class="clearfix"></div>
  •  43.

  • FICHEIRO: /home/capamodular/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/capamodular/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/capamodular/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    912
  •  908.             $name = $this->getResponseSegment();
  •  909.         }
  •  910.
  •  911.         $this->getResponse()->appendBody(
  •  912.             $this->view->render($script),
  •  913.             $name
  •  914.         );
  •  915.
  •  916.         $this->setNoRender();
  •  917.     }

  • FICHEIRO: /home/capamodular/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    933
  •  929.     public function render($action = null, $name = null, $noController = null)
  •  930.     {
  •  931.         $this->setRender($action, $name, $noController);
  •  932.         $path = $this->getViewScript();
  •  933.         $this->renderScript($path, $name);
  •  934.     }
  •  935.
  •  936.     /**
  •  937.      * Render a script based on specification variables
  •  938.      *

  • FICHEIRO: /home/capamodular/library/Zend/Controller/Action/Helper/ViewRenderer.php
  • LINHA:    972
  •  968.      */
  •  969.     public function postDispatch()
  •  970.     {
  •  971.         if ($this->_shouldRender()) {
  •  972.             $this->render();
  •  973.         }
  •  974.     }
  •  975.
  •  976.     /**
  •  977.      * Should the ViewRenderer render a view script?

  • FICHEIRO: /home/capamodular/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/capamodular/library/Goweb/Controller/Action.php
  • LINHA:    571
  •  567.         // shutting down, regardless of dispatching; notify the helpers of this
  •  568.
  •  569.         // state
  •  570.
  •  571.         $this->_helper->notifyPostDispatch();
  •  572.
  •  573.     }    
  •  574.
  •  575.
  •  576.

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