1af67b958d884bb00188d0f0837d47dc.yaml.php 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. <?php
  2. return [
  3. '@class' => 'Grav\\Common\\File\\CompiledYamlFile',
  4. 'filename' => '/var/www/html/user/plugins/admin-addon-user-manager/blueprints/user/group.yaml',
  5. 'modified' => 1591823819,
  6. 'data' => [
  7. 'title' => 'Group',
  8. 'form' => [
  9. 'validation' => 'loose',
  10. 'fields' => [
  11. 'groupname' => [
  12. 'type' => 'text',
  13. 'size' => 'large',
  14. 'label' => 'PLUGIN_ADMIN.NAME',
  15. 'readonly' => true
  16. ],
  17. 'readableName' => [
  18. 'type' => 'text',
  19. 'size' => 'large',
  20. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.READABLE_NAME'
  21. ],
  22. 'description' => [
  23. 'type' => 'text',
  24. 'size' => 'large',
  25. 'label' => 'PLUGIN_ADMIN.DESCRIPTION'
  26. ],
  27. 'icon' => [
  28. 'type' => 'text',
  29. 'size' => 'small',
  30. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.ICON'
  31. ],
  32. 'access' => [
  33. 'type' => 'permissions',
  34. 'label' => 'PLUGIN_ADMIN.PERMISSIONS',
  35. 'ignore_empty' => true,
  36. 'validate' => [
  37. 'type' => 'array'
  38. ]
  39. ],
  40. 'users' => [
  41. 'type' => 'select',
  42. 'multiple' => true,
  43. 'size' => 'large',
  44. 'label' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.USERS',
  45. 'data-options@' => '\\AdminAddonUserManager\\Users\\Manager::userNames',
  46. 'classes' => 'fancy',
  47. 'help' => 'PLUGIN_ADMIN_ADDON_USER_MANAGER.USERS_HELP',
  48. 'validate' => [
  49. 'type' => 'commalist'
  50. ]
  51. ]
  52. ]
  53. ]
  54. ]
  55. ];