manifest.xml 1.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. <?xml version="1.0" encoding="UTF-8"?>
  2. <plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
  3. <name>AU Sub-Groups</name>
  4. <author>Matt Beckett</author>
  5. <version>1.6</version>
  6. <description>Allows creation of groups within groups</description>
  7. <website>https://landing.athabascau.ca</website>
  8. <copyright>(C) Athabasca University, 2012</copyright>
  9. <license>GNU Public License version 2</license>
  10. <!-- All plugins must require either elgg_version or elgg_release. -->
  11. <requires>
  12. <type>elgg_release</type>
  13. <version>1.8.9</version>
  14. </requires>
  15. <requires>
  16. <type>plugin</type>
  17. <name>groups</name>
  18. </requires>
  19. <requires>
  20. <type>priority</type>
  21. <plugin>groups</plugin>
  22. <priority>after</priority>
  23. </requires>
  24. <suggests>
  25. <type>plugin</type>
  26. <name>group_tools</name>
  27. </suggests>
  28. <requires>
  29. <type>priority</type>
  30. <plugin>group_tools</plugin>
  31. <priority>after</priority>
  32. </requires>
  33. <screenshot>
  34. <description>Group pages have a link to view subgroups of that group</description>
  35. <path>graphics/subgroups1.png</path>
  36. </screenshot>
  37. <screenshot>
  38. <description>List of subgroups</description>
  39. <path>graphics/subgroups2.png</path>
  40. </screenshot>
  41. <screenshot>
  42. <description>Subgroups can have visibility as permissive as the parent, with the option of 'members of the parent group'</description>
  43. <path>graphics/subgroups3.png</path>
  44. </screenshot>
  45. <screenshot>
  46. <description>Widget and group module for listing subgroups</description>
  47. <path>graphics/subgroups4.png</path>
  48. </screenshot>
  49. <category>Site Admin</category>
  50. </plugin_manifest>