config.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. <?php
  2. return [
  3. 'name' => 'V2board',
  4. 'description' => 'V2board默认主题',
  5. 'version' => '1.5.6',
  6. 'images' => 'https://images.unsplash.com/photo-1515405295579-ba7b45403062?ixlib=rb-1.2.1&ixid=MnwxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8&auto=format&fit=crop&w=2160&q=80',
  7. 'configs' => [
  8. [
  9. 'label' => '主题色', // 标签
  10. 'placeholder' => '请选择主题颜色', // 描述
  11. 'field_name' => 'theme_color', // 字段名 作为数据key使用
  12. 'field_type' => 'select', // 字段类型: select,input,switch
  13. 'select_options' => [ // 当字段类型为select时有效
  14. 'default' => '默认(蓝色)',
  15. 'green' => '奶绿色',
  16. 'black' => '黑色',
  17. 'darkblue' => '暗蓝色',
  18. ],
  19. 'default_value' => 'default' // 字段默认值,将会在首次进行初始化
  20. ], [
  21. 'label' => '背景',
  22. 'placeholder' => '请输入背景图片URL',
  23. 'field_name' => 'background_url',
  24. 'field_type' => 'input'
  25. ], [
  26. 'label' => '边栏风格',
  27. 'placeholder' => '请选择边栏风格',
  28. 'field_name' => 'theme_sidebar',
  29. 'field_type' => 'select',
  30. 'select_options' => [
  31. 'light' => '亮',
  32. 'dark' => '暗'
  33. ],
  34. 'default_value' => 'light'
  35. ], [
  36. 'label' => '顶部风格',
  37. 'placeholder' => '请选择顶部风格',
  38. 'field_name' => 'theme_header',
  39. 'field_type' => 'select',
  40. 'select_options' => [
  41. 'light' => '亮',
  42. 'dark' => '暗'
  43. ],
  44. 'default_value' => 'dark'
  45. ], [
  46. 'label' => '自定义页脚HTML',
  47. 'placeholder' => '可以实现客服JS代码的加入等',
  48. 'field_name' => 'custom_html',
  49. 'field_type' => 'textarea'
  50. ]
  51. ]
  52. ];