コード例 #1
0
ファイル: Updates.php プロジェクト: idxos/portfolio
 /**
  * Index controller
  */
 public function index()
 {
     $this->vars['coreBuild'] = Parameters::get('system::core.build');
     $this->vars['projectId'] = Parameters::get('system::project.id');
     $this->vars['projectName'] = Parameters::get('system::project.name');
     $this->vars['projectOwner'] = Parameters::get('system::project.owner');
     $this->vars['pluginsActiveCount'] = PluginVersion::isEnabled()->count();
     $this->vars['pluginsCount'] = PluginVersion::count();
     return $this->asExtension('ListController')->index();
 }