コード例 #1
0
ファイル: Decorator.php プロジェクト: emilymwang8/cntspeed50
 public function execute()
 {
     $this->apf = APF::get_instance();
     $this->request = $this->apf->get_request();
     $this->response = $this->apf->get_response();
     $attributes = $this->request->get_attributes();
     if (!empty($attributes)) {
         foreach ($attributes as $key => $value) {
             $this->assign_data($key, $value);
         }
     }
     parent::execute();
 }
コード例 #2
0
ファイル: CustomRequest.php プロジェクト: rh20083907/ipublish
 public function __construct()
 {
     parent::__construct();
 }
コード例 #3
0
ファイル: iBugRequest.php プロジェクト: emilymwang8/ibug
 public function __construct()
 {
     parent::__construct();
     $this->timestamp = time();
     $this->user_id = 0;
 }