Yexam.php 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. <?php
  2. namespace addons\yexam;
  3. use app\common\library\Menu;
  4. use think\Addons;
  5. /**
  6. * 插件
  7. */
  8. class Yexam extends Addons
  9. {
  10. /**
  11. * 插件安装方法
  12. * @return bool
  13. */
  14. public function install()
  15. {
  16. $menu = [
  17. [
  18. 'name' => 'yexam',
  19. 'title' => '考试系统',
  20. 'icon' => 'fa fa-graduation-cap',
  21. 'sublist' => [
  22. [
  23. "name" => "yexam/subject",
  24. "title" => "科目管理",
  25. 'icon' => 'fa fa-map-marker',
  26. 'sublist' => [
  27. ["name" => "yexam/subject/index", "title" => "查看",],
  28. ["name" => "yexam/subject/add", "title" => "添加"],
  29. ["name" => "yexam/subject/edit", "title" => "编辑"],
  30. ["name" => "yexam/subject/del", "title" => "删除"],
  31. ["name" => "yexam/subject/multi", "title" => "批量更新"],
  32. ]
  33. ],
  34. [
  35. "name" => "yexam/ad",
  36. "title" => "轮播图管理",
  37. 'icon' => 'fa fa-photo',
  38. 'sublist' => [
  39. ["name" => "yexam/ad/index", "title" => "查看",],
  40. ["name" => "yexam/ad/add", "title" => "添加"],
  41. ["name" => "yexam/ad/edit", "title" => "编辑"],
  42. ["name" => "yexam/ad/del", "title" => "删除"],
  43. ["name" => "yexam/ad/multi", "title" => "批量更新"],
  44. ]
  45. ],
  46. [
  47. "name" => "yexam/unit",
  48. "title" => "章节练习",
  49. 'icon' => 'fa fa-braille',
  50. 'sublist' => [
  51. ["name" => "yexam/unit/index", "title" => "查看",],
  52. ["name" => "yexam/unit/add", "title" => "添加"],
  53. ["name" => "yexam/unit/edit", "title" => "编辑"],
  54. ["name" => "yexam/unit/del", "title" => "删除"],
  55. ["name" => "yexam/unit/multi", "title" => "批量更新"],
  56. [
  57. "name" => "yexam/question",
  58. "title" => "题目管理",
  59. 'ismenu' => 0,
  60. 'sublist' => [
  61. ["name" => "yexam/question/index", "title" => "查看",],
  62. ["name" => "yexam/question/add", "title" => "添加"],
  63. ["name" => "yexam/question/edit", "title" => "编辑"],
  64. ["name" => "yexam/question/del", "title" => "删除"],
  65. ["name" => "yexam/question/multi", "title" => "批量更新"],
  66. ["name" => "yexam/question/import", "title" => "导入题目"],
  67. ]
  68. ],
  69. ]
  70. ],
  71. [
  72. "name" => "yexam/exam",
  73. "title" => "考试管理",
  74. 'icon' => 'fa fa-graduation-cap',
  75. 'sublist' => [
  76. ["name" => "yexam/exam/index", "title" => "查看",],
  77. ["name" => "yexam/exam/add", "title" => "添加"],
  78. ["name" => "yexam/exam/edit", "title" => "编辑"],
  79. ["name" => "yexam/exam/del", "title" => "删除"],
  80. ["name" => "yexam/exam/multi", "title" => "批量更新"],
  81. ["name" => "yexam/exam/question", "title" => "考试题目管理"],
  82. ["name" => "yexam/exam/sel_question", "title" => "抽题组卷"],
  83. ["name" => "yexam/exam/import", "title" => "导入题目"],
  84. ["name" => "yexam/exam/user_log", "title" => "考试记录"],
  85. ["name" => "yexam/exam/error_user_log", "title" => "错题记录"],
  86. ]
  87. ],
  88. [
  89. "name" => "yexam/library",
  90. "title" => "历年真题",
  91. 'icon' => 'fa fa-list-alt',
  92. 'sublist' => [
  93. ["name" => "yexam/library/index", "title" => "查看",],
  94. ["name" => "yexam/library/add", "title" => "添加"],
  95. ["name" => "yexam/library/edit", "title" => "编辑"],
  96. ["name" => "yexam/library/del", "title" => "删除"],
  97. ["name" => "yexam/library/multi", "title" => "批量更新"],
  98. [
  99. "name" => "yexam/library_question",
  100. "title" => "题目管理",
  101. 'ismenu' => 0,
  102. 'sublist' => [
  103. ["name" => "yexam/library/question", "title" => "查看",],
  104. ["name" => "yexam/library/addquestion", "title" => "添加"],
  105. ["name" => "yexam/library/editquestion", "title" => "编辑"],
  106. ["name" => "yexam/library/delquestion", "title" => "删除"],
  107. ["name" => "yexam/library/import", "title" => "导入题目"],
  108. ]
  109. ],
  110. ]
  111. ],
  112. ]
  113. ]
  114. ];
  115. Menu::create($menu);
  116. return true;
  117. }
  118. /**
  119. * 插件卸载方法
  120. * @return bool
  121. */
  122. public function uninstall()
  123. {
  124. Menu::delete("yexam");
  125. return true;
  126. }
  127. /**
  128. * 插件启用方法
  129. * @return bool
  130. */
  131. public function enable()
  132. {
  133. Menu::enable("yexam");
  134. return true;
  135. }
  136. /**
  137. * 插件禁用方法
  138. * @return bool
  139. */
  140. public function disable()
  141. {
  142. Menu::disable("yexam");
  143. return true;
  144. }
  145. }