You are here

function formassembly_drush_command in FormAssembly 7

Implements hook_drush_command().

File

./formassembly.drush.inc, line 44
Drush command file

Code

function formassembly_drush_command() {
  $items = array();
  $items['fa-sync'] = array(
    'command-hook' => 'fasync',
    'description' => dt('Request form data from FormAssembly and sync with site database.'),
  );
  return $items;
}