function cmis_drush_help in CMIS API 7.2
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
- ./
cmis.drush.inc, line 54 - drush integration for cmis.
Code
function cmis_drush_help($section) {
switch ($section) {
case 'drush:cmis-phplib':
return dt("Downloads the CMIS PHP library from Apache Chemistry, default location is sites/all/libraries.");
}
}