You are here

protected function MaestroEngineProcessDetails::defineOptions in Maestro 3.x

Same name and namespace in other branches
  1. 8.2 src/Plugin/views/field/MaestroEngineProcessDetails.php \Drupal\maestro\Plugin\views\field\MaestroEngineProcessDetails::defineOptions()

Define the available options.

Return value

array The array of options.

Overrides FieldPluginBase::defineOptions

File

src/Plugin/views/field/MaestroEngineProcessDetails.php, line 33

Class

MaestroEngineProcessDetails
Field handler to show process details and attached views.

Namespace

Drupal\maestro\Plugin\views\field

Code

protected function defineOptions() {
  $options = parent::defineOptions();
  $options['views_attached'] = [
    'default' => '',
  ];
  return $options;
}