You are here

CustomPermsEntityInterface.php in Custom Permissions 8.2

Same filename and directory in other branches
  1. 8 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 route.
   */
  public function getRoute();

}

Interfaces

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