Commits on Source (11)
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
Issue #3281672 by Jan-E, kristiaanvandeneynde: doAddLeaf & doRemoveLeaf: timestamp bug and scalability
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
-
Kristiaan Van den Eynde authored
-
Issue #3381010 by ricovandevin: Error when after creating a tree when no group roles have been set up yet
-
Kristiaan Van den Eynde authored
-
Issue #3434818 by kristiaanvandeneynde, jurgenhaas: Automated Drupal 11 compatibility fixes for subgroup
Showing
- .gitlab-ci.yml 13 additions, 0 deletions.gitlab-ci.yml
- composer.json 6 additions, 3 deletionscomposer.json
- phpcs.xml 17 additions, 0 deletionsphpcs.xml
- phpstan-baseline.neon 6 additions, 0 deletionsphpstan-baseline.neon
- phpstan.neon 12 additions, 0 deletionsphpstan.neon
- src/Access/InheritedGroupPermissionCalculator.php 6 additions, 2 deletionssrc/Access/InheritedGroupPermissionCalculator.php
- src/Entity/GroupSubgroupHandler.php 250 additions, 12 deletionssrc/Entity/GroupSubgroupHandler.php
- src/Entity/GroupTypeSubgroupHandler.php 0 additions, 84 deletionssrc/Entity/GroupTypeSubgroupHandler.php
- src/Entity/RoleInheritance.php 1 addition, 0 deletionssrc/Entity/RoleInheritance.php
- src/Event/GroupLeafEvent.php 1 addition, 1 deletionsrc/Event/GroupLeafEvent.php
- src/Event/GroupTypeLeafEvent.php 1 addition, 1 deletionsrc/Event/GroupTypeLeafEvent.php
- src/EventSubscriber/GroupTypeLeafSubscriber.php 3 additions, 3 deletionssrc/EventSubscriber/GroupTypeLeafSubscriber.php
- src/EventSubscriber/TreeCacheTagInvalidator.php 1 addition, 1 deletionsrc/EventSubscriber/TreeCacheTagInvalidator.php
- src/Form/SubgroupSettingsForm.php 14 additions, 4 deletionssrc/Form/SubgroupSettingsForm.php
- src/GroupLeaf.php 4 additions, 1 deletionsrc/GroupLeaf.php
- src/Plugin/Group/Relation/Subgroup.php 1 addition, 1 deletionsrc/Plugin/Group/Relation/Subgroup.php
- src/Plugin/Group/Relation/SubgroupDeriver.php 2 additions, 2 deletionssrc/Plugin/Group/Relation/SubgroupDeriver.php
- subgroup.info.yml 1 addition, 1 deletionsubgroup.info.yml
- subgroup.module 11 additions, 10 deletionssubgroup.module
- tests/modules/subgroup_test/subgroup_test.info.yml 1 addition, 1 deletiontests/modules/subgroup_test/subgroup_test.info.yml
.gitlab-ci.yml
0 → 100644
... | ... | @@ -2,7 +2,7 @@ |
"name": "drupal/subgroup", | ||
"type": "drupal-module", | ||
"description": "Allows you to structure groups into a hierarchical tree with permissions inheriting up or down", | ||
"homepage": "http://drupal.org/project/subgroup", | ||
"homepage": "https://drupal.org/project/subgroup", | ||
"authors": [ | ||
{ | ||
"name": "Kristiaan Van den Eynde", | ||
... | ... | @@ -17,7 +17,10 @@ |
"license": "GPL-2.0-or-later", | ||
"minimum-stability": "dev", | ||
"require": { | ||
"drupal/core": "^9 || ^10", | ||
"drupal/group": "^2.0" | ||
"drupal/core": "^10.3 || ^11", | ||
"drupal/group": "^3.0" | ||
}, | ||
"require-dev": { | ||
"jangregor/phpstan-prophecy": "^1.0" | ||
} | ||
} |
phpcs.xml
0 → 100644
phpstan-baseline.neon
0 → 100644
phpstan.neon
0 → 100644