function micon_drush_command in Micon 8
Implements hook_drush_command().
File
- ./
micon.drush.inc, line 11 - Contains Drush hooks.
Code
function micon_drush_command() {
$items = array();
$items['micon'] = array(
'description' => 'Generate SCSS mixins and variables for currently enabled Micon icon sets.',
'arguments' => array(
'path' => 'The destination where the _micon.scss mixin file should be created. Do not include a trailing slash.',
),
'examples' => array(
'drush micon "themes/my_theme/src/scss/base"' => 'Creates the SCSS mixin file and places it within SITE_ROOT/themes/my_theme/src/scss/base',
),
);
return $items;
}