mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
26ee7ade66
git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/trunk@90457 467b73ca-7a2a-4603-9d3b-597d59a354a9
40 lines
917 B
PHP
40 lines
917 B
PHP
<?php
|
|
|
|
/**
|
|
* A PermissionRole represents a collection of permission codes that can be applied to groups.
|
|
*
|
|
* Because permission codes are very granular, this lets website administrators create more
|
|
* business-oriented units of access control - Roles - and assign those to groups.
|
|
*/
|
|
class PermissionRole extends DataObject {
|
|
static $db = array(
|
|
"Title" => "Varchar",
|
|
"OnlyAdminCanApply" => "Boolean"
|
|
);
|
|
|
|
static $has_many = array(
|
|
"Codes" => "PermissionRoleCode",
|
|
);
|
|
|
|
static $belongs_many_many = array(
|
|
"Groups" => "Group",
|
|
);
|
|
|
|
static $default_sort = 'Title';
|
|
|
|
function getCMSFields() {
|
|
$fields = parent::getCMSFields();
|
|
|
|
$fields->removeFieldFromTab('Root', 'Codes');
|
|
$fields->removeFieldFromTab('Root', 'Groups');
|
|
|
|
$fields->addFieldToTab('Root.Main', new PermissionCheckboxSetField(
|
|
'Codes',
|
|
'Permissions',
|
|
'PermissionRoleCode',
|
|
'RoleID'));
|
|
|
|
return $fields;
|
|
}
|
|
}
|