Exemplo n.º 1
0
 /**
  * Passes the e_view parameter that Joomla sends in the request for the editor name.
  *
  * @see KControllerResource::getView()
  */
 public function getView()
 {
     $view = parent::getView();
     if ($view) {
         $view->assign('editor', $this->_request->e_name);
     }
     return $view;
 }
Exemplo n.º 2
0
 public function getView()
 {
     $view = parent::getView();
     if ($view) {
         $return = $this->getService('koowa:filter.base64')->sanitize($this->_request->return);
         $view->assign('return', $return);
     }
     return $view;
 }
Exemplo n.º 3
0
	public function getView()
	{
		$view = parent::getView();

		if ($view) {
			$return = KFilter::factory('base64')->sanitize($this->_request->return);
			$view->assign('return', $return);
		}

		return $view;
	}