function drush_views_bulk_operations_execute in Views Bulk Operations (VBO) 4.0.x
Same name and namespace in other branches
- 8.3 views_bulk_operations.drush.inc \drush_views_bulk_operations_execute()
- 8 views_bulk_operations.drush.inc \drush_views_bulk_operations_execute()
- 8.2 views_bulk_operations.drush.inc \drush_views_bulk_operations_execute()
- 6 views_bulk_operations.drush.inc \drush_views_bulk_operations_execute()
The vbo-exec command execution function.
Parameters
string $view_id: The ID of the view to use.
string $action_id: The ID of the action to execute.
File
- ./
views_bulk_operations.drush.inc, line 87 - Contains code providing drush commands functionality.
Code
function drush_views_bulk_operations_execute($view_id, $action_id) {
$debug = drush_get_option('debug', FALSE);
_views_bulk_operations_timer($debug);
// Prepare parameters.
$arguments = drush_get_option('args', FALSE);
if ($arguments) {
$arguments = explode('/', $arguments);
}
$qs_config = [
'config' => [],
'exposed' => [],
];
foreach ($qs_config as $name => $value) {
$config_data = drush_get_option($name, []);
if (!empty($config_data)) {
parse_str($config_data, $qs_config[$name]);
}
}
$vbo_data = [
'list' => [],
'view_id' => $view_id,
'display_id' => drush_get_option('display-id', 'default'),
'action_id' => $action_id,
'preconfiguration' => $qs_config['config'],
'batch' => TRUE,
'arguments' => $arguments,
'exposed_input' => $qs_config['exposed'],
'batch_size' => drush_get_option('batch-size', 100),
'relationship_id' => 'none',
];
// Initialize the view to check if parameters are correct.
if (!($view = Views::getView($vbo_data['view_id']))) {
drush_set_error('Incorrect view ID provided.');
return;
}
if (!$view
->setDisplay($vbo_data['display_id'])) {
drush_set_error('Incorrect view display ID provided.');
return;
}
if (!empty($vbo_data['arguments'])) {
$view
->setArguments($vbo_data['arguments']);
}
if (!empty($vbo_data['exposed_input'])) {
$view
->setExposedInput($vbo_data['exposed_input']);
}
// We need total rows count for proper progress message display.
$view->get_total_rows = TRUE;
$view
->execute();
// Get relationship ID if VBO field exists.
$vbo_data['relationship_id'] = 'none';
foreach ($view->field as $field) {
if ($field->options['id'] === 'views_bulk_operations_bulk_form') {
$vbo_data['relationship_id'] = $field->options['relationship'];
}
}
// Get total rows count.
$viewDataService = \Drupal::service('views_bulk_operations.data');
$viewDataService
->init($view, $view
->getDisplay(), $vbo_data['relationship_id']);
$vbo_data['total_results'] = $viewDataService
->getTotalResults();
// Get action definition and check if action ID is correct.
try {
$action_definition = \Drupal::service('plugin.manager.views_bulk_operations_action')
->getDefinition($action_id);
} catch (\Exception $e) {
drush_set_error($e
->getMessage());
return;
}
$vbo_data['action_label'] = (string) $action_definition['label'];
_views_bulk_operations_timer($debug, 'init');
// Populate entity list.
$context = [];
do {
$context['finished'] = 1;
$context['message'] = '';
ViewsBulkOperationsBatch::getList($vbo_data, $context);
if (!empty($context['message'])) {
drush_log($context['message'], 'ok');
}
} while ($context['finished'] < 1);
$vbo_data = $context['results'];
_views_bulk_operations_timer($debug, 'list');
// Execute the selected action.
$context = [];
do {
$context['finished'] = 1;
$context['message'] = '';
ViewsBulkOperationsBatch::operation($vbo_data, $context);
if (!empty($context['message'])) {
drush_log($context['message'], 'ok');
}
} while ($context['finished'] < 1);
// Output a summary message.
$operations = array_count_values($context['results']['operations']);
$details = [];
foreach ($operations as $op => $count) {
$details[] = $op . ' (' . $count . ')';
}
drush_log(dt('Action processing results: @results.', [
'@results' => implode(', ', $details),
]), 'ok');
// Display debug information.
if ($debug) {
_views_bulk_operations_timer($debug, 'execute');
drush_print(sprintf('Initialization time: %d ms.', _views_bulk_operations_timer($debug, 'init')));
drush_print(sprintf('Entity list generation time: %d ms.', _views_bulk_operations_timer($debug, 'list')));
drush_print(sprintf('Execution time: %d ms.', _views_bulk_operations_timer($debug, 'execute')));
}
}