drush_backend_invoke_concurrent |
includes/backend.inc |
Execute a new local or remote command in a new process. |
drush_backend_output |
includes/backend.inc |
Print the json-encoded output of this command, including the
encoded log records, context information, etc. |
drush_backend_output_collect |
includes/backend.inc |
Callback to collect backend command output. |
drush_backend_output_discard |
includes/backend.inc |
Output buffer functions that discards all output but backend packets. |
drush_backend_packet |
includes/backend.inc |
Output a backend packet if we're running as backend. |
drush_backend_packet_log |
includes/drush.inc |
Backend command callback. Add a log message to the log history. |
drush_backend_packet_set_error |
includes/backend.inc |
Backend command for setting errors. |
drush_backend_parse_output |
includes/backend.inc |
Parse output returned from a Drush command. |
drush_backend_parse_packets |
includes/backend.inc |
Parse out and remove backend packet from the supplied string and
invoke the commands. |
drush_backend_set_result |
includes/backend.inc |
The backend result is the original PHP data structure (usually an array)
used to generate the output for the current command. |
drush_batch_command |
includes/batch.inc |
Process sets from the specified batch. |
drush_bit_bucket |
includes/environment.inc |
Checks operating system and returns
supported bit bucket folder. |
drush_bootstrap |
includes/bootstrap.inc |
Bootstrap Drush to the desired phase. |
drush_bootstrap_class_for_root |
includes/bootstrap.inc |
Look up the best bootstrap class for the given location
from the set of available candidates. |
drush_bootstrap_error |
includes/bootstrap.inc |
Helper function to collect any errors that occur during the bootstrap process.
Always returns FALSE, for convenience. |
drush_bootstrap_max |
includes/bootstrap.inc |
Bootstrap to the highest level possible, without triggering any errors. |
drush_bootstrap_max_to_sitealias |
includes/bootstrap.inc |
Bootstrap the specified site alias. The site alias must
be a valid alias to a local site. |
drush_bootstrap_to_phase |
includes/bootstrap.inc |
Bootstrap to the specified phase. |
drush_bootstrap_validate |
includes/bootstrap.inc |
Validate whether a bootstrap phase can be reached. |
drush_bootstrap_value |
includes/bootstrap.inc |
Helper function to store any context settings that are being validated. |
drush_browse |
commands/core/browse.drush.inc |
Command callback. |
drush_build_drush_command |
includes/environment.inc |
Build a drush command suitable for use for Drush to call itself
e.g. in backend_invoke. |
drush_cache_clear_all |
includes/cache.inc |
Expire data from the cache. |
drush_cache_clear_block |
commands/core/drupal/cache_8.inc |
Clear the cache of the block output. |
drush_cache_clear_block |
commands/core/drupal/cache.inc |
Clear the cache of the block output. |
drush_cache_clear_both |
commands/core/drupal/cache.inc |
Clear caches internal to Drush core and Drupal. |
drush_cache_clear_css_js |
commands/core/drupal/cache_8.inc |
|
drush_cache_clear_css_js |
commands/core/drupal/cache.inc |
|
drush_cache_clear_drush |
commands/core/cache.drush.inc |
Clear caches internal to drush core. |
drush_cache_clear_menu |
commands/core/drupal/cache_8.inc |
|
drush_cache_clear_menu |
commands/core/drupal/cache.inc |
|
drush_cache_clear_pre_validate |
commands/core/cache.drush.inc |
|
drush_cache_clear_render |
commands/core/drupal/cache_8.inc |
Clears the render cache entries. |
drush_cache_clear_theme_registry |
commands/core/drupal/cache_8.inc |
|
drush_cache_clear_theme_registry |
commands/core/drupal/cache.inc |
|
drush_cache_clear_types |
commands/core/cache.drush.inc |
All types of caches available for clearing. Contrib commands can alter in their own. |
drush_cache_command_clear |
commands/core/cache.drush.inc |
Command callback for drush cache-clear. |
drush_cache_command_get |
commands/core/cache.drush.inc |
Print an object returned from the cache. |
drush_cache_command_set |
commands/core/cache.drush.inc |
Set an object in the cache. |
drush_cache_get |
includes/cache.inc |
Return data from the persistent cache. |
drush_cache_get_bins |
includes/cache.inc |
Return drush cache bins and any bins added by hook_drush_flush_caches(). |
drush_cache_get_multiple |
includes/cache.inc |
Return data from the persistent cache when given an array of cache IDs. |
drush_cache_rebuild |
commands/core/cache.drush.inc |
Rebuild a Drupal 8 site. |
drush_cache_set |
includes/cache.inc |
Store data in the persistent cache. |
drush_cache_set_prepare_data |
commands/core/cache.drush.inc |
|
drush_call_user_func_array |
includes/drush.inc |
Mimic cufa but still call function directly. See http://drupal.org/node/329012#comment-1260752 |
drush_check_module_dependencies |
commands/core/drupal/environment_7.inc |
Return dependencies and its status for modules. |
drush_check_module_dependencies |
commands/core/drupal/environment_6.inc |
Return dependencies and its status for modules. |
drush_check_module_dependencies |
commands/core/drupal/environment.inc |
Return dependencies and its status for modules. |
drush_choice |
includes/drush.inc |
Ask the user to select an item from a list.
From a provided associative array, drush_choice will
display all of the questions, numbered from 1 to N,
and return the item the user selected. "0" is always
cancel; entering a blank line is also… |