You are here

function optimizely_drush_help in Optimizely 7.3

Implements hook_drush_help().

File

./optimizely.drush.inc, line 14
Drush integration of Otimizely.

Code

function optimizely_drush_help($section) {
  switch ($section) {
    case 'drush:optimizely-set-id':
      return dt('Set the optimizely account ID.');
    default:
      return dt('@section not defined.', array(
        '@section' => $section,
      ));
  }
}