'drush_colorbox_plugin', 'description' => dt('Download and install the Colorbox plugin.'), 'bootstrap' => DRUSH_BOOTSTRAP_DRUSH, // No bootstrap. 'arguments' => array( 'path' => dt('Optional. A path where to install the Colorbox plugin. If omitted Drush will use the default location.'), ), 'aliases' => array('colorboxplugin'), ); return $items; } /** * Implementation of hook_drush_help(). * * This function is called whenever a drush user calls * 'drush help ' * * @param string $section * A string with the help section (prepend with 'drush:') * * @return string * A string with the help text for your command. */ function colorbox_drush_help($section) { switch ($section) { case 'drush:colorbox-plugin': return dt('Download and install the Colorbox plugin from jacklmoore.com/colorbox, default location is sites/all/libraries.'); } } /** * Implements drush_MODULE_pre_pm_enable(). */ function drush_colorbox_pre_pm_enable() { $modules = drush_get_context('PM_ENABLE_MODULES'); if (in_array('colorbox', $modules) && !drush_get_option('skip')) { drush_colorbox_plugin(); } } /** * Command to download the Colorbox plugin. */ function drush_colorbox_plugin() { $args = func_get_args(); if (!empty($args[0])) { $path = $args[0]; } else { $path = 'sites/all/libraries'; } // Create the path if it does not exist. if (!is_dir($path)) { drush_op('mkdir', $path); drush_log(dt('Directory @path was created', array('@path' => $path)), 'notice'); } // Set the directory to the download location. $olddir = getcwd(); chdir($path); // Download the zip archive if ($filepath = drush_download_file(COLORBOX_DOWNLOAD_URI)) { $filename = basename($filepath); $dirname = COLORBOX_DOWNLOAD_PREFIX . basename($filepath, '.zip'); // Remove any existing Colorbox plugin directory if (is_dir($dirname) || is_dir('colorbox')) { drush_delete_dir($dirname, TRUE); drush_delete_dir('colorbox', TRUE); drush_log(dt('A existing Colorbox plugin was deleted from @path', array('@path' => $path)), 'notice'); } // Decompress the zip archive drush_tarball_extract($filename); // Change the directory name to "colorbox" if needed. if ($dirname != 'colorbox') { drush_move_dir($dirname, 'colorbox', TRUE); $dirname = 'colorbox'; } } if (is_dir($dirname)) { drush_log(dt('Colorbox plugin has been installed in @path', array('@path' => $path)), 'success'); } else { drush_log(dt('Drush was unable to install the Colorbox plugin to @path', array('@path' => $path)), 'error'); } // Set working directory back to the previous working directory. chdir($olddir); }