public function View::getExportProperties

Overrides \Drupal\Core\Config\Entity\ConfigEntityBase::getExportProperties();

Overrides ConfigEntityBase::getExportProperties

File

drupal/core/modules/views/lib/Drupal/views/Plugin/Core/Entity/View.php, line 342
Definition of Drupal\views\Plugin\Core\Entity\View.

Class

View
Defines a View configuration entity class.

Namespace

Drupal\views\Plugin\Core\Entity

Code

public function getExportProperties() {
  $names = array(
    'base_field',
    'base_table',
    'core',
    'description',
    'status',
    'display',
    'label',
    'module',
    'id',
    'tag',
    'uuid',
    'langcode',
  );
  $properties = array();
  foreach ($names as $name) {
    $properties[$name] = $this
      ->get($name);
  }
  return $properties;
}