2007-07-19 12:40:28 +02:00
|
|
|
<?php
|
|
|
|
|
2008-02-25 03:10:37 +01:00
|
|
|
/**
|
|
|
|
* @package sapphire
|
|
|
|
* @subpackage security
|
|
|
|
*/
|
|
|
|
|
2007-07-19 12:40:28 +02: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-02-25 03:10:37 +01:00
|
|
|
* @package sapphire
|
|
|
|
* @subpackage security
|
2007-07-19 12:40:28 +02:00
|
|
|
*/
|
|
|
|
class PermissionDropdownField extends DropdownField {
|
|
|
|
function __construct($name, $title = "") {
|
|
|
|
parent::__construct($name, $title, Permission::get_codes(true));
|
|
|
|
}
|
|
|
|
}
|