コード例 #1
0
ファイル: System.php プロジェクト: KasaiDot/FoolFrame
 public function action_information()
 {
     $data = ['info' => S::getEnvironment($this->getContext())];
     $this->param_manager->setParam('method_title', _i('Information'));
     $this->builder->createPartial('body', 'system/information')->getParamManager()->setParams($data);
     return new Response($this->builder->build());
 }
コード例 #2
0
ファイル: Install.php プロジェクト: KasaiDot/FoolFrame
 public function action_system_check()
 {
     $data = [];
     $data['system'] = System::getEnvironment($this->getContext());
     $this->process('system_check');
     $this->param_manager->setParam('method_title', _i('System Check'));
     $this->builder->createPartial('body', 'install/system_check')->getParamManager()->setParams($data);
     return new Response($this->builder->build());
 }