-
-
Notifications
You must be signed in to change notification settings - Fork 115
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[permissions] move permissions to database, add GUI permissions editor
- Loading branch information
1 parent
124f3eb
commit 2eeb314
Showing
10 changed files
with
585 additions
and
79 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
<?php | ||
|
||
declare(strict_types=1); | ||
|
||
namespace Shimmie2; | ||
|
||
class PermManagerInfo extends ExtensionInfo | ||
{ | ||
public const KEY = "perm_manager"; | ||
|
||
public string $key = self::KEY; | ||
public string $name = "Permission Manager"; | ||
public string $url = self::SHIMMIE_URL; | ||
public array $authors = self::SHISH_AUTHOR; | ||
public string $license = self::LICENSE_GPLV2; | ||
public ExtensionVisibility $visibility = ExtensionVisibility::ADMIN; | ||
public ExtensionCategory $category = ExtensionCategory::ADMIN; | ||
public string $description = "Allows the admin to modify user class permissions."; | ||
public bool $core = true; | ||
} |
Oops, something went wrong.