Server : Apache System : Linux indy02.toastserver.com 3.10.0-962.3.2.lve1.5.85.el7.x86_64 #1 SMP Thu Apr 18 15:18:36 UTC 2024 x86_64 User : palandch ( 1163) PHP Version : 7.1.33 Disable Function : NONE Directory : /home/palandch/www/core/model/modx/ |
<?php /** * @package modx */ /** * Represents a Role that a User can have within a specific User Group. Roles are sorted into authority levels, where * lower authority numbers will automatically inherit Permissions owned by higher authority numbers. * * For example, an Administrator with authority of 1 will automatically inherit any Permissions assigned to a Member * role with authority 9999, since 1 is less than 9999. However, the reverse will not be true. * * @property string $name The name of the Role * @property string $description A user-provided description of this Role * @property int $authority The authority of the role. Lower authority numbers have more power than higher ones, and * lower numbers will inherit the Permissions of higher numbers. * * @see modUser * @see modUserGroup * @package modx */ class modUserGroupRole extends xPDOSimpleObject {}