示例#1
0
 protected function structure()
 {
     $arr = ['open' => ['type' => 'open'], 'foolfuuka.plugins.board_statistics.enabled' => ['type' => 'checkbox_array', 'label' => 'Enabled statistics', 'help' => _i('Select the statistics to enable. Some might be too slow to process, so you should disable them. Some statistics don\'t use extra processing power so they are enabled by default.'), 'checkboxes' => []], 'separator-2' => ['type' => 'separator-short'], 'submit' => ['type' => 'submit', 'class' => 'btn-primary', 'value' => _i('Submit')], 'close' => ['type' => 'close']];
     foreach ($this->board_stats->getStats() as $key => $stat) {
         $arr['foolfuuka.plugins.board_statistics.enabled']['checkboxes'][] = ['type' => 'checkbox', 'label' => $key, 'help' => sprintf(_i('Enable %s statistics'), $stat['name']), 'array_key' => $key, 'preferences' => true];
     }
     return $arr;
 }