Same name and namespace in other branches
  1. 7.x-1.x color_field.drush.inc \color_field_drush_help() 1 comment

Implements hook_drush_help().

File

./color_field.drush.inc, line 64

Code

function color_field_drush_help($section) {
    switch ($section) {
        case 'drush:color-field-plugin-download':
            return dt("Downloads a Color Picker plugin, default location is sites/all/libraries.");
            break;
        case 'drush:color-field-simple':
            return dt("Downloads the Simple Color Picker plugin, default location is sites/all/libraries.");
            break;
        case 'drush:color-field-eyecon':
            return dt("Downloads the EyeCon Color Picker plugin, default location is sites/all/libraries.");
            break;
        case 'drush:color-field-dematte':
            return dt("Downloads the Dematte Color Picker plugin, default location is sites/all/libraries.");
            break;
        case 'drush:color-field-spectrum':
            return dt("Downloads the Spectrum Color Picker plugin, default location is sites/all/libraries.");
            break;
    }
}