2007-07-19 10:40:28 +00:00
|
|
|
<?php
|
|
|
|
|
2008-01-08 06:37:50 +00:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage security
|
|
|
|
*/
|
|
|
|
|
2007-07-19 10:40:28 +00:00
|
|
|
/**
|
|
|
|
* Special kind of dropdown field that has all permission codes as its dropdown source.
|
|
|
|
* Note: This would ordinarily be overkill; the main reason we have it is that TableField doesn't let you specify a dropdown source;
|
|
|
|
* only a classname
|
2008-01-09 04:18:36 +00:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage security
|
2007-07-19 10:40:28 +00:00
|
|
|
*/
|
|
|
|
class PermissionDropdownField extends DropdownField {
|
|
|
|
function __construct($name, $title = "") {
|
|
|
|
parent::__construct($name, $title, Permission::get_codes(true));
|
|
|
|
}
|
|
|
|
}
|