• FICHEIRO: /home/visitcascaisgowe/views/Catalogo/list.tpl
  • LINHA:    174
  • MENSAGEM: Undefined variable: texto_formatado
  •  170.             </p>
  •  171.             <div style="margin-top: 35px;">
  •  172.                 <?php if( $empresa->descricao ): ?>
  •  173.                     <div class="force-descricao-font">
  •  174.                         <?php echo $texto_formatado; ?>
  •  175.                     </div>
  •  176.                 <?php endif; ?>
  •  177.             </div>
  •  178.             <div id="contact-discover-more" class="contact-buttons-area" style="margin-top: auto; padding-top: 40px;">
  •  179.                 <a href="<?php echo $empresa->website; ?>" class="viewmore_button" target="_blank"><?php echo translate('Discover more'); ?></a>

  • FICHEIRO: /home/visitcascaisgowe/views/Catalogo/list.tpl
  • LINHA:    174
  •  170.             </p>
  •  171.             <div style="margin-top: 35px;">
  •  172.                 <?php if( $empresa->descricao ): ?>
  •  173.                     <div class="force-descricao-font">
  •  174.                         <?php echo $texto_formatado; ?>
  •  175.                     </div>
  •  176.                 <?php endif; ?>
  •  177.             </div>
  •  178.             <div id="contact-discover-more" class="contact-buttons-area" style="margin-top: auto; padding-top: 40px;">
  •  179.                 <a href="<?php echo $empresa->website; ?>" class="viewmore_button" target="_blank"><?php echo translate('Discover more'); ?></a>

  • FICHEIRO: /home/visitcascaisgowe/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/visitcascaisgowe/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/visitcascaisgowe/application/Cms/GenericController.php
  • LINHA:    615
  •  611.         $view->titulo = $titulo;
  •  612.         if(!empty($extraParams)) {
  •  613.             $view->extraParams = $extraParams;
  •  614.         }
  •  615.         $view->output = $view->render($template);
  •  616.         $view->setViewsPath(VIEWS_PATH);
  •  617.         if ($print)
  •  618.             $canal = 'print.tpl';
  •  619.         $viewRenderer->setRender(str_replace('.' . $viewRenderer->getViewSuffix(), '', $canal));
  •  620.     }

  • FICHEIRO: /home/visitcascaisgowe/application/Catalogo/GenericController.php
  • LINHA:    536
  •  532.                                                                             'list.tpl',
  •  533.                                                                             'Catalogo',
  •  534.                                                                             'catalogo-list',
  •  535.                     $titulo,
  •  536.                     $this->_getParam('print'));
  •  537.                     $this->_helper->viewRenderer->setRender($this->_canal);
  •  538.             } else {
  •  539.                     $this->_helper->viewRenderer->setRender('list');
  •  540.             }
  •  541.     }

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