You are here

class EntityPost in Services 9.0.x

Same name in this branch
  1. 9.0.x src/Plugin/Deriver/EntityPost.php \Drupal\services\Plugin\Deriver\EntityPost
  2. 9.0.x src/Plugin/ServiceDefinition/EntityPost.php \Drupal\services\Plugin\ServiceDefinition\EntityPost
Same name and namespace in other branches
  1. 8.4 src/Plugin/Deriver/EntityPost.php \Drupal\services\Plugin\Deriver\EntityPost

Class \Drupal\services\Plugin\Deriver\EntityPost.

Hierarchy

  • class \Drupal\services\Plugin\Deriver\EntityPost extends \Drupal\ctools\Plugin\Deriver\EntityDeriverBase

Expanded class hierarchy of EntityPost

File

src/Plugin/Deriver/EntityPost.php, line 10

Namespace

Drupal\services\Plugin\Deriver
View source
class EntityPost extends EntityDeriverBase {

  /**
   * {@inheritdoc}
   */
  public function getDerivativeDefinitions($base_plugin_definition) {
    foreach ($this->entityTypeManager
      ->getDefinitions() as $entity_type_id => $entity_type) {
      $this->derivatives[$entity_type_id] = $base_plugin_definition;
      $this->derivatives[$entity_type_id]['title'] = $this
        ->t('@label: Create', [
        '@label' => $entity_type
          ->getLabel(),
      ]);
      $this->derivatives[$entity_type_id]['description'] = $this
        ->t('Creates a @entity_type_id object and returns its id.', [
        '@entity_type_id' => $entity_type_id,
      ]);
      $this->derivatives[$entity_type_id]['category'] = $this
        ->t('@label', [
        '@label' => $entity_type
          ->getLabel(),
      ]);
      $this->derivatives[$entity_type_id]['path'] = $entity_type_id;
    }
    return $this->derivatives;
  }

}

Members