Example #1
0
 public function __construct($aBegin, $szTitle)
 {
     parent::__construct();
     $this->addPost('submit,order_value', 'order');
     $this->aBegin = $aBegin;
     $this->szTitle = $szTitle;
 }
Example #2
0
 public function __construct($tplFile, $szTitle, $aBegin = array(), $aButton = array())
 {
     parent::__construct();
     $this->tplFile = $tplFile;
     $this->title = $szTitle;
     $this->aBegin = $aBegin;
     $this->aButton = $aButton;
     $this->addPost('file,content', 'post');
 }
Example #3
0
 public function __construct($urlInfo = array())
 {
     parent::__construct();
     //
     if (!empty($urlInfo)) {
         $this->aUrlInfo = $urlInfo;
     }
     $this->addGet('id', 'show');
     Trace::addMessage('DB', '<strong>Старт контроллера</strong>');
 }
Example #4
0
 public function __construct()
 {
     parent::__construct();
     $this->addPost('document_name,document_id', 'delete');
 }
Example #5
0
 function __construct()
 {
     parent::__construct();
     $this->addPost('content', 'store');
 }