public function Action::getExportProperties

Overrides \Drupal\Core\Entity\Entity::getExportProperties().

Overrides ConfigEntityBase::getExportProperties

File

drupal/core/modules/system/lib/Drupal/system/Plugin/Core/Entity/Action.php, line 166
Contains \Drupal\system\Plugin\Core\Entity\Action.

Class

Action
Defines the configured action entity.

Namespace

Drupal\system\Plugin\Core\Entity

Code

public function getExportProperties() {
  $properties = parent::getExportProperties();
  $names = array(
    'type',
    'plugin',
    'configuration',
  );
  foreach ($names as $name) {
    $properties[$name] = $this
      ->get($name);
  }
  return $properties;
}