You are here

protected function ViewsBulkOperationsBulkForm::isConfigurable in Views Bulk Operations (VBO) 8

Check if an action is configurable.

Overrides PluginBase::isConfigurable

2 calls to ViewsBulkOperationsBulkForm::isConfigurable()
ViewsBulkOperationsBulkForm::viewsForm in src/Plugin/views/field/ViewsBulkOperationsBulkForm.php
Form constructor for the bulk form.
ViewsBulkOperationsBulkForm::viewsFormSubmit in src/Plugin/views/field/ViewsBulkOperationsBulkForm.php
Submit handler for the bulk form.

File

src/Plugin/views/field/ViewsBulkOperationsBulkForm.php, line 790

Class

ViewsBulkOperationsBulkForm
Defines the Views Bulk Operations field plugin.

Namespace

Drupal\views_bulk_operations\Plugin\views\field

Code

protected function isConfigurable($action) {
  return in_array('Drupal\\Core\\Plugin\\PluginFormInterface', class_implements($action['class']), TRUE) || method_exists($action['class'], 'buildConfigurationForm');
}