Updated to Drupal 8.5. Core Media not yet in use.
[yaffs-website] / web / modules / contrib / simple_sitemap / simple_sitemap.drush.inc
index 6fbba7be22e1d99f5fef9f0baa39767374900e27..7458a6abbb02092551c5ebe341eb839d613ea1bc 100644 (file)
@@ -2,7 +2,7 @@
 
 /**
  * @file
- * Drush integration.
+ * Drush (< 9) integration.
  */
 
 /**
@@ -10,7 +10,7 @@
  */
 function simple_sitemap_drush_command() {
   $items['simple_sitemap-generate'] = [
-    'description' => 'Regenerate XML sitemaps for all languages according to the module settings.',
+    'description' => 'Regenerate the XML sitemap according to the module settings.',
     'callback' => 'drush_simple_sitemap_generate',
     'drupal dependencies' => ['simple_sitemap'],
   ];
@@ -20,7 +20,7 @@ function simple_sitemap_drush_command() {
 /**
  * Callback function for hook_drush_command().
  *
- * Regenerate sitemap for all languages.
+ * Regenerate the XML sitemap.
  */
 function drush_simple_sitemap_generate() {
   \Drupal::service('simple_sitemap.generator')->generateSitemap('drush');