function drush_photoswipe_plugin in PhotoSwipe 3.x
Same name and namespace in other branches
- 8.2 drush/photoswipe.drush.inc \drush_photoswipe_plugin()
- 8 drush/photoswipe.drush.inc \drush_photoswipe_plugin()
- 7.2 drush/photoswipe.drush.inc \drush_photoswipe_plugin()
Command to download the PhotoSwipe plugin.
1 call to drush_photoswipe_plugin()
- drush_photoswipe_post_pm_enable in drush/
photoswipe.drush.inc - Implements drush_MODULE_post_pm_enable().
1 string reference to 'drush_photoswipe_plugin'
- photoswipe_drush_command in drush/
photoswipe.drush.inc - Implements hook_drush_command().
File
- drush/
photoswipe.drush.inc, line 60 - Drush integration for PhotoSwipe.
Code
function drush_photoswipe_plugin() {
$args = func_get_args();
if (!empty($args[0])) {
$path = $args[0];
}
else {
$path = 'libraries';
}
// Create the path if it does not exist.
if (!is_dir($path)) {
drush_op('mkdir', $path);
\Drupal::logger(dt('Directory @path was created', [
'@path' => $path,
]))
->notice('notice');
}
// Set the directory to the download location.
$olddir = getcwd();
chdir($path);
// Download the zip archive.
if ($filepath = drush_download_file(PHOTOSWIPE_DOWNLOAD_URL)) {
$filename = basename($filepath);
$dirname = PHOTOSWIPE_DOWNLOAD_PREFIX . ltrim(basename($filepath, '.zip'), 'v');
// Remove any existing PhotoSwipe plugin directory.
if (is_dir($dirname) || is_dir('photoswipe')) {
Filesystem::remove($dirname, TRUE);
Filesystem::remove('photoswipe', TRUE);
\Drupal::logger(dt('A existing PhotoSwipe plugin was deleted from @path', [
'@path' => $path,
]))
->notice('notice');
}
// Decompress the zip archive.
drush_tarball_extract($filename);
// Change the directory name to "photoswipe" if needed.
if ($dirname != 'photoswipe') {
drush_move_dir($dirname, 'photoswipe', TRUE);
$dirname = 'photoswipe';
}
}
if (is_dir($dirname)) {
\Drupal::logger(dt('PhotoSwipe plugin has been installed in @path', [
'@path' => $path,
]))
->success('success');
}
else {
\Drupal::logger(dt('Drush was unable to install the PhotoSwipe plugin to @path', [
'@path' => $path,
]))
->error('error');
}
// Set working directory back to the previous working directory.
chdir($olddir);
}