You are here

function drush_colorbox_plugin in Colorbox 6

Same name and namespace in other branches
  1. 8 drush/colorbox.drush.inc \drush_colorbox_plugin()
  2. 7.2 drush/colorbox.drush.inc \drush_colorbox_plugin()
  3. 7 drush/colorbox.drush.inc \drush_colorbox_plugin()

Command to download the Colorbox plugin.

1 string reference to 'drush_colorbox_plugin'
colorbox_drush_command in drush/colorbox.drush.inc
Implementation of hook_drush_command().

File

drush/colorbox.drush.inc, line 77
drush integration for colorbox.

Code

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);
  $filename = basename(COLORBOX_DOWNLOAD_URI);
  $dirname = basename(COLORBOX_DOWNLOAD_URI, '.zip');

  // Remove any existing Colorbox plugin directory
  if (is_dir($dirname)) {
    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');
  }

  // Remove any existing Colorbox plugin zip archive
  if (is_file($filename)) {
    drush_delete_dir($filename, TRUE);
  }

  // Download the zip archive
  drush_download_file(COLORBOX_DOWNLOAD_URI);
  if (is_file($filename)) {

    // 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);
}