コード例 #1
0
ファイル: Update.php プロジェクト: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $id = $this->input->get('id');
     $this->data['module'] = Module::find($id);
     if (!$this->data['module']) {
         return $this->redirect($this->plugin->modules_url());
     }
     return parent::onGet($input);
 }
コード例 #2
0
ファイル: Create.php プロジェクト: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['modules'] = Module::all();
     return parent::onGet($input);
 }
コード例 #3
0
ファイル: All.php プロジェクト: Aliqhuart/puzzle-wp
 protected function onGet(\Controllers\Request $input)
 {
     $this->data['modules'] = Module::orderBy('name')->paginate(10, ['*'], 'subpage');
     return parent::onGet($input);
 }