1<?php 2 3/** 4 * Class ConfigManagerAdminOverview 5 */ 6class ConfigManagerAdminOverview implements ConfigManagerAdminAction { 7 8 /** 9 * @var helper_plugin_confmanager 10 */ 11 private $helper; 12 13 /** 14 * Set helper 15 */ 16 public function __construct() { 17 $this->helper = plugin_load('helper', 'confmanager'); 18 } 19 20 public function handle() {} 21 22 public function html() { 23 $configFiles = $this->helper->getConfigFiles(); 24 $default = ''; 25 include DOKU_PLUGIN . 'confmanager/tpl/selectConfig.php'; 26 } 27 28} 29