Exemplo n.º 1
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('content', 'store');
 }
Exemplo n.º 2
0
 public function __construct()
 {
     parent::__construct();
     $this->addGet('url', 'showByURL');
 }
Exemplo n.º 3
0
 public function __construct($tplPath, HttpRequest $request)
 {
     parent::__construct();
     $this->view = new View($tplPath);
     $this->view->set('request', $request);
 }
Exemplo n.º 4
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('group,permissions', 'update');
 }
Exemplo n.º 5
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('testId', 'test');
 }
Exemplo n.º 6
0
 public function __construct()
 {
     parent::__construct();
     $this->addGet('document,index,fieldname,displayLimit', 'showByCount');
 }
Exemplo n.º 7
0
 public function __construct()
 {
     $this->setupAclActionsRequiredForAction(array(\CMSAuth::AuditorRoleName));
     parent::__construct();
 }