Return to Snippet

Revision: 56724
at April 11, 2012 11:02 by sherakama


Initial Code
<?php


function hello_world($args) {
  var_dump($args);
}



// /////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////////

$args = drush_get_arguments();
if(function_exists($args[2])) {
  $args[2]($args);
  drush_log('completed running', 'ok');
} else {
  drush_log('Could not find drush script command', 'error');
}

Initial URL


Initial Description


Initial Title
drush+script+example

Initial Tags
textmate

Initial Language
Other