• FICHEIRO: /home/axtion/www/views/Cms/menu-list4.tpl
  • LINHA:    20
  • MENSAGEM: Undefined variable: cor
  •  16.     <?php if(isset($cor) && $pai_id==0){ ?>
  •  17.     <?php //if(isset($cor)){ ?>
  •  18.         jQuery("#cor_<?php echo $id; ?>").css("border-bottom","4px solid <?php echo $cor; ?>");
  •  19.     <?php }else{ ?>
  •  20.         jQuery("#cor_<?php echo $pai_id; ?>").css("border-bottom","4px solid <?php echo $cor; ?>");
  •  21.     <?php } ?>
  •  22. });
  •  23. </script>
  •  24. <?php echo $menu; ?>

  • FICHEIRO: /home/axtion/www/views/Cms/menu-list4.tpl
  • LINHA:    20
  •  16.     <?php if(isset($cor) && $pai_id==0){ ?>
  •  17.     <?php //if(isset($cor)){ ?>
  •  18.         jQuery("#cor_<?php echo $id; ?>").css("border-bottom","4px solid <?php echo $cor; ?>");
  •  19.     <?php }else{ ?>
  •  20.         jQuery("#cor_<?php echo $pai_id; ?>").css("border-bottom","4px solid <?php echo $cor; ?>");
  •  21.     <?php } ?>
  •  22. });
  •  23. </script>
  •  24. <?php echo $menu; ?>

  • FICHEIRO: /home/axtion/www/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/axtion/www/library/Zend/View/Abstract.php
  • LINHA:    831
  •  827.         $this->_file = $this->_script($name);
  •  828.         unset($name); // remove $name from local scope
  •  829.
  •  830.         ob_start();
  •  831.         $this->_run($this->_file);
  •  832.
  •  833.         return $this->_filter(ob_get_clean()); // filter output
  •  834.     }
  •  835.
  •  836.     /**

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

  • FICHEIRO: /home/axtion/www/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/axtion/www/library/Zend/View/Abstract.php
  • LINHA:    340
  •  336.         // call the helper method
  •  337.         return call_user_func_array(
  •  338.             array($helper, $name),
  •  339.             $args
  •  340.         );
  •  341.     }
  •  342.
  •  343.     /**
  •  344.      * Given a base path, sets the script, helper, and filter paths relative to it
  •  345.      *

  • FICHEIRO: /home/axtion/www/views/Cms/header.tpl
  • LINHA:    26
  •  22.             <div class="umlink"><a href="#"></a></div>-->
  •  23.         </div>
  •  24.     </div>
  •  25.     <div id="menu">
  •  26.         <?= $this->component('/cms/menu-list4/pai_id/0/id_selected/'.$id); ?>
  •  27.     </div>
  •  28. </div>
  •  29.

  • FICHEIRO: /home/axtion/www/views/Cms/header.tpl
  • LINHA:    26
  •  22.             <div class="umlink"><a href="#"></a></div>-->
  •  23.         </div>
  •  24.     </div>
  •  25.     <div id="menu">
  •  26.         <?= $this->component('/cms/menu-list4/pai_id/0/id_selected/'.$id); ?>
  •  27.     </div>
  •  28. </div>
  •  29.

  • FICHEIRO: /home/axtion/www/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/axtion/www/library/Zend/View/Abstract.php
  • LINHA:    831
  •  827.         $this->_file = $this->_script($name);
  •  828.         unset($name); // remove $name from local scope
  •  829.
  •  830.         ob_start();
  •  831.         $this->_run($this->_file);
  •  832.
  •  833.         return $this->_filter(ob_get_clean()); // filter output
  •  834.     }
  •  835.
  •  836.     /**

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

  • FICHEIRO: /home/axtion/www/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/axtion/www/library/Zend/View/Abstract.php
  • LINHA:    340
  •  336.         // call the helper method
  •  337.         return call_user_func_array(
  •  338.             array($helper, $name),
  •  339.             $args
  •  340.         );
  •  341.     }
  •  342.
  •  343.     /**
  •  344.      * Given a base path, sets the script, helper, and filter paths relative to it
  •  345.      *

  • FICHEIRO: /home/axtion/www/views/base.tpl
  • LINHA:    128
  •  124. <body>
  •  125. <div id="container">
  •  126. <!--START CONTAINER-->
  •  127.     <div id="header">     
  •  128.         <?php echo $this->component('/cms/header/'); ?>  
  •  129.     </div>
  •  130.    
  •  131.     <div id="content">
  •  132.         <div id="content_int_base">
  •  133.         <!--START CONTENT-->

  • FICHEIRO: /home/axtion/www/views/base.tpl
  • LINHA:    128
  •  124. <body>
  •  125. <div id="container">
  •  126. <!--START CONTAINER-->
  •  127.     <div id="header">     
  •  128.         <?php echo $this->component('/cms/header/'); ?>  
  •  129.     </div>
  •  130.    
  •  131.     <div id="content">
  •  132.         <div id="content_int_base">
  •  133.         <!--START CONTENT-->

  • FICHEIRO: /home/axtion/www/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/axtion/www/library/Zend/View/Abstract.php
  • LINHA:    831
  •  827.         $this->_file = $this->_script($name);
  •  828.         unset($name); // remove $name from local scope
  •  829.
  •  830.         ob_start();
  •  831.         $this->_run($this->_file);
  •  832.
  •  833.         return $this->_filter(ob_get_clean()); // filter output
  •  834.     }
  •  835.
  •  836.     /**

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