コード例 #1
0
ファイル: ListController.php プロジェクト: AxelPanda/ibos
 public function init()
 {
     parent::init();
     $this->handleOP();
     $this->handleSort();
     $this->handleType();
     $this->handleFlowId();
     $this->handleKeyword();
 }
コード例 #2
0
ファイル: FormController.php プロジェクト: AxelPanda/ibos
 public function init()
 {
     $key = EnvUtil::getRequest("key");
     if ($key) {
         $this->key = $key;
         $param = WfCommonUtil::param($key, "DECODE");
         $this->runid = $param["runid"];
         $this->flowid = $param["flowid"];
         $this->processid = $param["processid"];
         $this->flowprocess = $param["flowprocess"];
     } else {
         $this->error(Ibos::lang("Parameters error", "error"), $this->createUrl("list/index"));
     }
     parent::init();
 }