config.php 1.2 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | d_comment [ WE CAN DO IT MORE SIMPLE ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2018 DaliyCode All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Author: DaliyCode <3471677985@qq.com> <author_url:dalicode.com>
  8. // +----------------------------------------------------------------------
  9. return array(
  10. 'comment_type' => array(
  11. 'title' => '是否开启:',
  12. 'type' => 'radio',
  13. 'options' => [
  14. '1' => '开',
  15. '2' => '关',
  16. ],
  17. 'value' => '1',
  18. ),
  19. 'comment_check' => array(
  20. 'title' => '开启审核:',
  21. 'type' => 'radio',
  22. 'options' => [
  23. '1' => '是',
  24. '2' => '否',
  25. ],
  26. 'value' => '2',
  27. 'tip' => '开启,则评论需要审核才会显示',
  28. ),
  29. 'comment_interval' => array(
  30. 'title' => '评论间隔:',
  31. 'type' => 'number',
  32. 'value' => '5',
  33. 'tip' => '单位秒,每次评论间隔时间',
  34. ),
  35. );