Shadow-Here


Server : Apache
System : Linux methusalix2 3.16.0-11-amd64 #1 SMP Debian 3.16.84-1 (2020-06-09) x86_64
User : hios ( 1437)
PHP Version : 5.6.40-0+deb8u12
Disable Function : proc_close,proc_open,dl,shell_exec,passthru
Directory :  /home/mara-lang/yin/core/model/modx/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :
Current File : /home/mara-lang/yin/core/model/modx/modusergrouprole.class.php
<?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 {}

Samx