Closed (fixed)
Project:
Superfish Dropdown Menu
Version:
7.x-1.8
Component:
Code
Priority:
Normal
Category:
Feature request
Assigned:
Unassigned
Reporter:
Created:
27 Jul 2011 at 17:21 UTC
Updated:
4 Dec 2011 at 20:10 UTC
I have been using drush more and more lately and was a little disappointed to see that superfish did not support it.
So I went ahead and copied the implementation from the Colorbox module and it seems to work just fine. You only need to add the file to the module directory.
Looks like I can't attach .inc files so here is the necessary code.
// superfish.drush.php
<?php
/**
* @file
* drush integration for superfish.
*/
/**
* The Superfish plugin URI.
*/
define('SUPERFISH_DOWNLOAD_URI', 'http://dl.dropbox.com/u/22795799/superfish-library-for-drupal-v1.zip');
/**
* Implementation of hook_drush_command().
*
* In this hook, you specify which commands your
* drush module makes available, what it does and
* description.
*
* Notice how this structure closely resembles how
* you define menu hooks.
*
* See `drush topic docs-commands` for a list of recognized keys.
*
* @return
* An associative array describing your command(s).
*/
function superfish_drush_command() {
$items = array();
// the key in the $items array is the name of the command.
$items['superfish-plugin'] = array(
'callback' => 'drush_superfish_plugin',
'description' => dt("Downloads the Superfish plugin."),
'bootstrap' => DRUSH_BOOTSTRAP_DRUSH, // No bootstrap.
'arguments' => array(
'path' => dt('Optional. A path where to install the Superfish plugin. If omitted Drush will use the default location.'),
),
'aliases' => array('superfishplugin'),
);
return $items;
}
/**
* Implementation of hook_drush_help().
*
* This function is called whenever a drush user calls
* 'drush help <name-of-your-command>'
*
* @param
* A string with the help section (prepend with 'drush:')
*
* @return
* A string with the help text for your command.
*/
function superfish_drush_help($section) {
switch ($section) {
case 'drush:superfish-plugin':
return dt("Downloads the Superfish plugin from colorpowered.com, default location is sites/all/libraries.");
}
}
/**
* Implements drush_MODULE_post_pm_enable().
*/
// function drush_superfish_post_pm_enable() {
// $modules = func_get_args();
// if (in_array('superfish', $modules)) {
// drush_superfish_plugin();
// }
// }
/**
* Command to download the Superfish plugin.
*/
function drush_superfish_plugin() {
if (!drush_shell_exec('type unzip')) {
return drush_set_error(dt('Missing dependency: unzip. Install it before using this command.'));
}
$args = func_get_args();
if ($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(SUPERFISH_DOWNLOAD_URI);
$dirname = basename(SUPERFISH_DOWNLOAD_URI, '.zip');
// Remove any existing Superfish plugin directory
if (is_dir($dirname)) {
drush_log(dt('A existing Superfish plugin was overwritten at @path', array('@path' => $path)), 'notice');
}
// Remove any existing Superfish plugin zip archive
if (is_file($filename)) {
drush_op('unlink', $filename);
}
// Download the zip archive
if (!drush_shell_exec('wget ' . SUPERFISH_DOWNLOAD_URI)) {
drush_shell_exec('curl -O ' . SUPERFISH_DOWNLOAD_URI);
}
if (is_file($filename)) {
// Decompress the zip archive
drush_shell_exec('unzip -qq -o ' . $filename);
// Remove the zip archive
drush_op('unlink', $filename);
}
// Set working directory back to the previous working directory.
chdir($olddir);
if (is_dir($path . '/' . $dirname)) {
drush_log(dt('Drush was unable to download the Superfish plugin to @path', array('@path' => $path)), 'error');
}
else {
drush_log(dt('Superfish plugin has been downloaded to @path', array('@path' => $path)), 'success');
}
}
?>
Comments
Comment #1
mehrpadin commentedHola Geraldo,
Mucho gracias for this, added to my to-do list.
Comment #2
mehrpadin commentedAdded as of v1.9-beta3 :) please review, test, etc. thanks again!