2f2cb4706678497a57e87f9493699a53.yaml.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. return [
  3. '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
  4. 'filename' => '/var/www/html/user/plugins/admin-addon-user-manager/blueprints.yaml',
  5. 'modified' => 1591823819,
  6. 'data' => [
  7. 'name' => 'Admin Addon User Manager',
  8. 'version' => '2.3.0',
  9. 'description' => 'A simple admin panel extension which adds the option to manage users and groups',
  10. 'icon' => 'plug',
  11. 'author' => [
  12. 'name' => 'Dávid Szabó',
  13. 'email' => 'david.szabo97@gmail.com'
  14. ],
  15. 'homepage' => 'https://github.com/david-szabo97/grav-plugin-admin-addon-user-manager',
  16. 'keywords' => 'grav, plugin, admin, media',
  17. 'bugs' => 'https://github.com/david-szabo97/grav-plugin-admin-addon-user-manager/issues',
  18. 'docs' => 'https://github.com/david-szabo97/grav-plugin-admin-addon-user-manager/blob/master/README.md',
  19. 'license' => 'MIT',
  20. 'dependencies' => [
  21. 0 => [
  22. 'name' => 'grav',
  23. 'version' => '>=1.0.0'
  24. ],
  25. 1 => [
  26. 'name' => 'admin',
  27. 'version' => '>=1.0.0'
  28. ]
  29. ],
  30. 'form' => [
  31. 'validation' => 'strict',
  32. 'fields' => [
  33. 'enabled' => [
  34. 'type' => 'toggle',
  35. 'label' => 'PLUGIN_ADMIN.PLUGIN_STATUS',
  36. 'highlight' => 1,
  37. 'default' => 0,
  38. 'options' => [
  39. 1 => 'PLUGIN_ADMIN.ENABLED',
  40. 0 => 'PLUGIN_ADMIN.DISABLED'
  41. ],
  42. 'validate' => [
  43. 'type' => 'bool'
  44. ]
  45. ],
  46. 'default_list_style' => [
  47. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.DEFAULT_LIST_STYLE',
  48. 'type' => 'select',
  49. 'options' => [
  50. 'grid' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.GRID',
  51. 'list' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.LIST'
  52. ]
  53. ],
  54. 'pagination.per_page' => [
  55. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.USERS_PER_PAGE',
  56. 'type' => 'select',
  57. 'options' => [
  58. 10 => 10,
  59. 20 => 20,
  60. 30 => 30,
  61. 40 => 40,
  62. 50 => 50,
  63. 60 => 60,
  64. 70 => 70,
  65. 80 => 80,
  66. 90 => 90,
  67. 100 => 100
  68. ]
  69. ],
  70. 'custom_permissions' => [
  71. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.CUSTOM_PERMISSIONS',
  72. 'type' => 'array',
  73. 'placeholder_value' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.CUSTOM_PERMISSIONS_PLACEHOLDER',
  74. 'value_only' => true
  75. ]
  76. ]
  77. ]
  78. ]
  79. ];