You are here

CustomPermsEntityInterface.php in Custom Permissions 8

Same filename and directory in other branches
  1. 8.2 src/CustomPermsEntityInterface.php

File

src/CustomPermsEntityInterface.php
View 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

Namesort descending Description
CustomPermsEntityInterface Provides an interface for defining Custom perms entity entities.