template.php 2.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697
  1. <?php
  2. return array
  3. (
  4. 'list' => array
  5. (
  6. 'field' => array
  7. (
  8. 'name',
  9. 'key',
  10. 'type',
  11. 'method',
  12. 'cdate',
  13. 'status' => array
  14. (
  15. 'type' => 'switch',
  16. 'show' => '{status}',
  17. 'active_value' => 1,
  18. 'inactive_value' => 2,
  19. ),
  20. ),
  21. 'button' => array
  22. (
  23. '新增' => 'add',
  24. ),
  25. 'data_button' => array
  26. (
  27. '设置' => 'edit',
  28. ),
  29. 'search' => array
  30. (
  31. 'name',
  32. 'key',
  33. 'status',
  34. )
  35. ),
  36. 'update' => array
  37. (
  38. 'tab' => array
  39. (
  40. '基本设置' => 'name,key,content,type,msg/template_code',
  41. '功能设置' => 'method,msg/template_sms,msg/template_email',
  42. ),
  43. 'field' => array
  44. (
  45. 'name',
  46. 'key',
  47. 'content' => array
  48. (
  49. 'type' => 'textarea',
  50. 'autosize' => array('minRows' => 2),
  51. 'desc' => '变量用大括号包含即可,如:{name}',
  52. ),
  53. 'type' => 'radio',
  54. 'msg/template_code' => array
  55. (
  56. 'name' => '验证码设置',
  57. 'where' => array('template_id' => 'id'),
  58. 'default' => array(array()),
  59. # 默认使用表格形式展示,可以改成每行展示
  60. 'type' => 'line',
  61. ),
  62. 'method' => 'checkbox',
  63. 'msg/template_sms' => array
  64. (
  65. 'name' => '短信设置',
  66. 'where' => array('template_id' => 'id'),
  67. 'default' => array(array()),
  68. # 默认使用表格形式展示,可以改成每行展示
  69. 'type' => 'line',
  70. ),
  71. 'msg/template_email' => array
  72. (
  73. 'name' => '邮件设置',
  74. 'where' => array('template_id' => 'id'),
  75. 'default' => array(array()),
  76. # 默认使用表格形式展示,可以改成每行展示
  77. 'type' => 'line',
  78. ),
  79. ),
  80. 'control' => array
  81. (
  82. 'msg/template_code' => array
  83. (
  84. 'type' => 2,
  85. ),
  86. 'msg/template_sms' => array
  87. (
  88. 'method' => array('sms'),
  89. ),
  90. 'msg/template_email' => array
  91. (
  92. 'method' => array('email'),
  93. ),
  94. ),
  95. ),
  96. );