protected function ViewsBulkOperationsCommands::t in Views Bulk Operations (VBO) 8.2
Same name and namespace in other branches
- 8.3 src/Commands/ViewsBulkOperationsCommands.php \Drupal\views_bulk_operations\Commands\ViewsBulkOperationsCommands::t()
- 4.0.x src/Commands/ViewsBulkOperationsCommands.php \Drupal\views_bulk_operations\Commands\ViewsBulkOperationsCommands::t()
Translates a string using the dt function.
Parameters
string $message: The message to translate.
array $arguments: (optional) The translation arguments.
Return value
string The translated message.
1 call to ViewsBulkOperationsCommands::t()
- ViewsBulkOperationsCommands::vboExecute in src/
Commands/ ViewsBulkOperationsCommands.php - Execute an action on all results of the specified view.
File
- src/
Commands/ ViewsBulkOperationsCommands.php, line 283
Class
- ViewsBulkOperationsCommands
- Defines Drush commands for the module.
Namespace
Drupal\views_bulk_operations\CommandsCode
protected function t($message, array $arguments = []) {
return dt($message, $arguments);
}