silverstripe-framework/src/Security/PermissionProvider.php

21 lines
496 B
PHP
Raw Normal View History

<?php
2016-06-23 01:37:22 +02:00
namespace SilverStripe\Security;
/**
* Used to let classes provide new permission codes.
* Every implementor of PermissionProvider is accessed and providePermissions() called to get the full list of
* permission codes.
*/
2016-11-29 00:31:16 +01:00
interface PermissionProvider
{
2016-11-29 00:31:16 +01:00
/**
* Return a map of permission codes to add to the dropdown shown in the Security section of the CMS.
* array(
* 'VIEW_SITE' => 'View the site',
* );
*/
public function providePermissions();
}