You are here

public function EntityResource::permissions in Drupal 8

Same name and namespace in other branches
  1. 9 core/modules/rest/src/Plugin/rest/resource/EntityResource.php \Drupal\rest\Plugin\rest\resource\EntityResource::permissions()

Implements ResourceInterface::permissions().

Every plugin operation method gets its own user permission. Example: "restful delete entity:node" with the title "Access DELETE on Node resource".

Overrides ResourceBase::permissions

File

core/modules/rest/src/Plugin/rest/resource/EntityResource.php, line 360

Class

EntityResource
Represents entities as resources.

Namespace

Drupal\rest\Plugin\rest\resource

Code

public function permissions() {

  // @see https://www.drupal.org/node/2664780
  if ($this->configFactory
    ->get('rest.settings')
    ->get('bc_entity_resource_permissions')) {

    // The default Drupal 8.0.x and 8.1.x behavior.
    return parent::permissions();
  }
  else {

    // The default Drupal 8.2.x behavior.
    return [];
  }
}