function proj4js_drush_help in Proj4JS 7
Implementation of hook_drush_help().
This function is called whenever a drush user calls 'drush help <name-of-your-command>'
Parameters
A string with the help section (prepend with 'drush:'):
Return value
A string with the help text for your command.
File
- drush/
proj4js.drush.inc, line 56 - drush integration for Proj4JS.
Code
function proj4js_drush_help($section) {
switch ($section) {
case 'drush:dl-proj4js':
return dt('Download and install the Proj4JS library from http://trac.osgeo.org/proj4js, default location is sites/all/libraries.');
}
}