Ejemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->_title = __('Profile');
     $this->_query_string = parent::__buildQueryString(array('profile'));
     if (!empty($this->_query_string)) {
         $this->_query_string = '&' . General::sanitize($this->_query_string);
     }
 }
Ejemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->_title = __('Debug');
     $this->_query_string = parent::__buildQueryString(array('symphony-page', 'debug'));
     if (!empty($this->_query_string)) {
         $this->_query_string = '&' . General::sanitize($this->_query_string);
     }
 }
Ejemplo n.º 3
0
 public function __construct(View $view)
 {
     parent::__construct($view);
     $this->title = __('Debug');
     $this->state = isset($_GET['debug-state']) ? $_GET['debug-state'] : null;
     $this->utilities = $this->findUtilities($this->view->template);
     if (isset($_GET['debug'])) {
         $this->show = $_GET['debug'] ? $_GET['debug'] : 'source';
     } else {
         $this->show = 'frontend';
     }
     unset($this->url->parameters()->debug);
     unset($this->url->parameters()->{'debug-state'});
 }
Ejemplo n.º 4
0
		public function __construct(){
			parent::__construct();
		}