CustomPermsEntityInterface.php in Custom Permissions 8
Same filename and directory in other branches
Namespace
Drupal\config_permsFile
src/CustomPermsEntityInterface.phpView source
<?php
namespace Drupal\config_perms;
use Drupal\Core\Config\Entity\ConfigEntityInterface;
/**
* Provides an interface for defining Custom perms entity entities.
*/
interface CustomPermsEntityInterface extends ConfigEntityInterface {
/**
* Get the permission status.
*/
public function getStatus();
/**
* Get the permission paths.
*/
public function getPath();
}
Interfaces
Name | Description |
---|---|
CustomPermsEntityInterface | Provides an interface for defining Custom perms entity entities. |