function yoast_seo_drush_command in Real-time SEO for Drupal 8
Implements hook_drush_command().
File
- drush/
yoast_seo.drush.inc, line 11 - Drush integration for the yoast_seo module.
Code
function yoast_seo_drush_command() {
$items = array();
// Command yoastseo-prepare-uninstall
// prepares the module to be uninstalled.
$items['yoastseo-prepare-uninstall'] = array(
'description' => "Prepare uninstalling Real-time SEO. Remove fields and data.",
'aliases' => array(
'ypu',
),
);
return $items;
}