public function View::isInstallable in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Entity/View.php \Drupal\views\Entity\View::isInstallable()
Checks whether this entity is installable.
For example, a default view might not be installable if the base table doesn't exist.
@retun bool TRUE if the entity is installable, FALSE otherwise.
Overrides ConfigEntityBase::isInstallable
File
- core/
modules/ views/ src/ Entity/ View.php, line 450 - Contains \Drupal\views\Entity\View.
Class
- View
- Defines a View configuration entity class.
Namespace
Drupal\views\EntityCode
public function isInstallable() {
$table_definition = \Drupal::service('views.views_data')
->get($this->base_table);
// Check whether the base table definition exists and contains a base table
// definition. For example, taxonomy_views_data_alter() defines
// node_field_data even if it doesn't exist as a base table.
return $table_definition && isset($table_definition['table']['base']);
}