SmsMenusSeed.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. <?php
  2. // +----------------------------------------------------------------------
  3. // | CatchAdmin [Just Like ~ ]
  4. // +----------------------------------------------------------------------
  5. // | Copyright (c) 2017~{$year} http://catchadmin.com All rights reserved.
  6. // +----------------------------------------------------------------------
  7. // | Licensed ( https://github.com/yanwenwu/catch-admin/blob/master/LICENSE.txt )
  8. // +----------------------------------------------------------------------
  9. // | Author: JaguarJack [ njphper@gmail.com ]
  10. // +----------------------------------------------------------------------
  11. use think\migration\Seeder;
  12. class SmsMenusSeed extends Seeder
  13. {
  14. /**
  15. * Run Method.
  16. *
  17. * Write your database seeder using this method.
  18. *
  19. * More information on writing seeders is available here:
  20. * http://docs.phinx.org/en/latest/seeding.html
  21. */
  22. public function run()
  23. {
  24. \catcher\Utils::importTreeData($this->getPermissions(), 'permissions', 'parent_id');
  25. }
  26. protected function getPermissions()
  27. {
  28. return array (
  29. 0 =>
  30. array (
  31. 'id' => 113,
  32. 'permission_name' => '短信管理',
  33. 'parent_id' => 0,
  34. 'level' => '',
  35. 'route' => '/sms',
  36. 'icon' => 'el-icon-s-promotion',
  37. 'module' => 'sms',
  38. 'creator_id' => 1,
  39. 'permission_mark' => 'sms',
  40. 'component' => 'layout',
  41. 'redirect' => '',
  42. 'keepalive' => 1,
  43. 'type' => 1,
  44. 'hidden' => 1,
  45. 'sort' => 1,
  46. 'created_at' => 1600229598,
  47. 'updated_at' => 1600229598,
  48. 'deleted_at' => 0,
  49. 'children' =>
  50. array (
  51. 0 =>
  52. array (
  53. 'id' => 114,
  54. 'permission_name' => '短信配置',
  55. 'parent_id' => 113,
  56. 'level' => '113',
  57. 'route' => '/sms/config',
  58. 'icon' => 'el-icon-copy-document',
  59. 'module' => 'sms',
  60. 'creator_id' => 1,
  61. 'permission_mark' => 'sms',
  62. 'component' => 'sms',
  63. 'redirect' => '',
  64. 'keepalive' => 1,
  65. 'type' => 1,
  66. 'hidden' => 1,
  67. 'sort' => 1,
  68. 'created_at' => 1600229654,
  69. 'updated_at' => 1600229778,
  70. 'deleted_at' => 0,
  71. ),
  72. ),
  73. ),
  74. );
  75. }
  76. }