config.php 244 B

123456789101112
  1. <?php
  2. return array(
  3. 'status' => array(
  4. 'title' => '是否开启:',
  5. 'type' => 'radio',
  6. 'options' => array(
  7. '1' => '开启',
  8. '0' => '关闭',
  9. ),
  10. 'value' => '1',
  11. ),
  12. );