class Utility in Helper 8
Provides various utility helpers.
Hierarchy
- class \Drupal\helper\Utility
Expanded class hierarchy of Utility
File
- src/
Utility.php, line 8
Namespace
Drupal\helperView source
class Utility {
/**
* Registers a unique function call for execution on shutdown.
*
* Wrapper for drupal_register_shutdown_function() that does not add the
* function call if it already exists in the shutdown function stack.
*
* @param callable $callback
* The shutdown function to register.
* @param ...
* Additional arguments to pass to the shutdown function.
*
* @return bool
* TRUE if the function was added, or FALSE if it was already in the stack.
*
* @see drupal_register_shutdown_function()
*/
public static function registerUniqueShutdownFunction(callable $callback = NULL) {
$args = func_get_args();
array_shift($args);
$existing_callbacks = drupal_register_shutdown_function();
foreach ($existing_callbacks as $existing_callback) {
if ($existing_callback['callback'] === $callback && $existing_callback['arguments'] === $args) {
return FALSE;
}
}
array_unshift($args, $callback);
call_user_func_array('drupal_register_shutdown_function', $args);
return TRUE;
}
/**
* Runs a batch even if another batch is currently running.
*
* This is useful for running a batch inside another batch process.
*
* @param array $batch
* A batch array that would normally get passed to batch_set().
*/
public static function runBatch(array $batch) {
$existing_batch = batch_get();
$current_batch =& batch_get();
if ($existing_batch) {
$current_batch = NULL;
}
batch_set($batch);
$current_batch['progressive'] = FALSE;
batch_process();
if ($existing_batch) {
$current_batch = $existing_batch;
}
}
}
Members
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
Utility:: |
public static | function | Registers a unique function call for execution on shutdown. | |
Utility:: |
public static | function | Runs a batch even if another batch is currently running. |