- FICHEIRO: /home/visitcascaisgowe/library/Goweb/Db/Model/Row.php
- LINHA: 160
- MENSAGEM: A coluna "empresa" não existe no objecto "Goweb_Db_Model_Row".
- 156. public function __get($col) {
- 157. if (array_key_exists($col, $this->_cols)) {
- 158. return $this->_cols[$col];
- 159. }
- 160. throw new Goweb_Exception('A coluna "' . $col . '" não existe no objecto "Goweb_Db_Model_Row".');
- 161. }
- 162.
- 163. /**
- 164. * Atribui o valor a uma coluna
- 165. *
- FICHEIRO: /home/visitcascaisgowe/views/Catalogo/list.tpl
- LINHA: 214
- 210. <div class="carousel-cell" style="padding: 20px;">
- 211. <div class="inner_card"><img class="carousel-cell-image destaque_product_image" src="<?php echo $imagens_upload_path . 'medium_' . $produto->imagem; ?>">
- 212. <p class="carousel-title"><?php echo $produto->titulo; ?></p>
- 213. <?php if(!isset($empresa)): ?>
- 214. <p class="carousel-subtitle"><?php echo translate("by ") . $produto->empresa->titulo; ?></p>
- 215. <?php endif; ?>
- 216. <div class="carousel-description"><?php echo $produto->descricao; ?></div>
- 217. <a class="d-lg-flex visitcascais_button" title="Check News" href="<?php echo $this->link($detail_url.$produto->id); ?>" ><?php echo translate("Check Offer Details"); ?></a>
- 218. </div>
- 219. </div>
- 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/Empresas/GenericController.php
- LINHA: 718
- 714. 'list.tpl',
- 715. 'Catalogo',
- 716. 'catalogo-list',
- 717. $titulo,
- 718. $this->_getParam('print'));
- 719. $this->_helper->viewRenderer->setRender('catalogo');
- 720. } else {
- 721. $this->_helper->viewRenderer->setRender('list');
- 722. }
- 723.
- 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. */