예제 #1
0
파일: order.php 프로젝트: gudwin/extasy
 public function __construct($aBegin, $szTitle)
 {
     parent::__construct();
     $this->addPost('submit,order_value', 'order');
     $this->aBegin = $aBegin;
     $this->szTitle = $szTitle;
 }
예제 #2
0
파일: template.php 프로젝트: gudwin/extasy
 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');
 }
예제 #3
0
 public function __construct($urlInfo = array())
 {
     parent::__construct();
     //
     if (!empty($urlInfo)) {
         $this->aUrlInfo = $urlInfo;
     }
     $this->addGet('id', 'show');
     Trace::addMessage('DB', '<strong>Старт контроллера</strong>');
 }
예제 #4
0
파일: delete.php 프로젝트: gudwin/extasy
 public function __construct()
 {
     parent::__construct();
     $this->addPost('document_name,document_id', 'delete');
 }
예제 #5
0
파일: htmlarea.php 프로젝트: gudwin/extasy
 function __construct()
 {
     parent::__construct();
     $this->addPost('content', 'store');
 }