Issue #3253400: Add hook_help
1 unresolved thread
Merge request reports
Activity
added 3 commits
13 14 use Drupal\Core\Url; 14 15 use Drupal\update\ProjectSecurityData; 15 16 17 /** 18 * Implements hook_help(). 19 */ 20 function automatic_updates_help($route_name, RouteMatchInterface $route_match) { 21 switch ($route_name) { 22 case 'help.page.auto_updates': 23 $output = '<h3>' . t('About') . '</h3>'; 24 $output .= '<p>' . t('Automatic Updates lets you update Drupal core.') . '</p>'; Is...is this all we want to say here? Should we not expand it to say that it provides a UI for updating core, and supports cron? Maybe also talk about how we just support patch-level updates?
Please register or sign in to reply