class DefaultWizardDeriver in Zircon Profile 8
Same name and namespace in other branches
- 8.0 core/modules/views/src/Plugin/Derivative/DefaultWizardDeriver.php \Drupal\views\Plugin\Derivative\DefaultWizardDeriver
A derivative class which provides automatic wizards for all base tables.
The derivatives store all base table plugin information.
Hierarchy
- class \Drupal\Component\Plugin\Derivative\DeriverBase implements DeriverInterface
- class \Drupal\views\Plugin\Derivative\DefaultWizardDeriver
Expanded class hierarchy of DefaultWizardDeriver
File
- core/
modules/ views/ src/ Plugin/ Derivative/ DefaultWizardDeriver.php, line 18 - Contains \Drupal\views\Plugin\Derivative\DefaultWizardDeriver.
Namespace
Drupal\views\Plugin\DerivativeView source
class DefaultWizardDeriver extends DeriverBase {
/**
* {@inheritdoc}
*/
public function getDerivativeDefinitions($base_plugin_definition) {
$views_data = Views::viewsData();
$base_tables = array_keys($views_data
->fetchBaseTables());
$this->derivatives = array();
foreach ($base_tables as $table) {
$views_info = $views_data
->get($table);
if (empty($views_info['table']['wizard_id'])) {
$this->derivatives[$table] = array(
'id' => 'standard',
'base_table' => $table,
'title' => $views_info['table']['base']['title'],
'class' => 'Drupal\\views\\Plugin\\views\\wizard\\Standard',
);
}
}
return parent::getDerivativeDefinitions($base_plugin_definition);
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
DefaultWizardDeriver:: |
public | function |
Gets the definition of all derivatives of a base plugin. Overrides DeriverBase:: |
|
DeriverBase:: |
protected | property | List of derivative definitions. | 1 |
DeriverBase:: |
public | function |
Gets the definition of a derivative plugin. Overrides DeriverInterface:: |