├── .poggit.yml ├── API.md ├── LICENSE ├── README.md ├── plugin.yml ├── resources ├── config.yml ├── mysql.sql └── sqlite.sql └── src └── alvin0319 └── GroupsAPI ├── Database.php ├── EventListener.php ├── GroupsAPI.php ├── command ├── AddGroupCommand.php ├── CheckGroupCommand.php ├── DeleteGroupCommand.php ├── EditGroupCommand.php ├── GroupCommand.php ├── GroupsCommand.php ├── NewGroupCommand.php ├── PermissionsCommand.php ├── PlayerPermissionCommand.php ├── RemoveGroupCommand.php └── TempGroupCommand.php ├── event ├── MemberLoadEvent.php └── PlayerGroupsUpdatedEvent.php ├── form └── GroupEditForm.php ├── group ├── Group.php ├── GroupManager.php └── GroupWrapper.php ├── user ├── Member.php └── MemberManager.php └── util ├── GroupPriority.php ├── SQLQueries.php ├── ScoreHudUtil.php └── Util.php /.poggit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/.poggit.yml -------------------------------------------------------------------------------- /API.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/API.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/README.md -------------------------------------------------------------------------------- /plugin.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/plugin.yml -------------------------------------------------------------------------------- /resources/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/resources/config.yml -------------------------------------------------------------------------------- /resources/mysql.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/resources/mysql.sql -------------------------------------------------------------------------------- /resources/sqlite.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/resources/sqlite.sql -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/Database.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/Database.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/EventListener.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/EventListener.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/GroupsAPI.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/GroupsAPI.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/AddGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/AddGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/CheckGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/CheckGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/DeleteGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/DeleteGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/EditGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/EditGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/GroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/GroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/GroupsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/GroupsCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/NewGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/NewGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/PermissionsCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/PermissionsCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/PlayerPermissionCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/PlayerPermissionCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/RemoveGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/RemoveGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/command/TempGroupCommand.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/command/TempGroupCommand.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/event/MemberLoadEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/event/MemberLoadEvent.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/event/PlayerGroupsUpdatedEvent.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/event/PlayerGroupsUpdatedEvent.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/form/GroupEditForm.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/form/GroupEditForm.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/group/Group.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/group/Group.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/group/GroupManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/group/GroupManager.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/group/GroupWrapper.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/group/GroupWrapper.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/user/Member.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/user/Member.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/user/MemberManager.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/user/MemberManager.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/util/GroupPriority.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/util/GroupPriority.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/util/SQLQueries.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/util/SQLQueries.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/util/ScoreHudUtil.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/util/ScoreHudUtil.php -------------------------------------------------------------------------------- /src/alvin0319/GroupsAPI/util/Util.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/alvin-pm-pl/GroupsAPI/HEAD/src/alvin0319/GroupsAPI/util/Util.php --------------------------------------------------------------------------------