function drush_backend_invoke_args
3.x backend.inc | drush_backend_invoke_args($command, $args, $data = array(), $method = 'GET', $integrate = TRUE, $drush_path = NULL, $hostname = NULL, $username = NULL, $ssh_options = NULL) |
4.x backend.inc | drush_backend_invoke_args($command, $args, $data = array(), $method = 'GET', $integrate = TRUE, $drush_path = NULL, $hostname = NULL, $username = NULL, $ssh_options = NULL) |
4 calls to drush_backend_invoke_args()
- drush_backend_invoke in includes/
backend.inc - Invoke a drush backend command.
- drush_do_command_redispatch in includes/
drush.inc - Redispatch the specified command using the same options that were passed to this invocation of drush.
- drush_do_multiple_command in includes/
drush.inc - Used by functions that operate on lists of sites, moving information from the source to the destination. Currenlty this includes 'drush rsync' and 'drush sql sync'.
- drush_do_site_command in includes/
drush.inc
File
- includes/
backend.inc, line 257 - Drush backend API
Code
function drush_backend_invoke_args($command, $args, $data = array(), $method = 'GET', $integrate = TRUE, $drush_path = NULL, $hostname = NULL, $username = NULL, $ssh_options = NULL) {
$cmd = _drush_backend_generate_command($command, $args, $data, $method, $drush_path, $hostname, $username, $ssh_options);
return _drush_backend_invoke($cmd, $data, $integrate);
}