Issue #2091431 by ifrik, wzoom, batigolix, InternetDevels, jhodgdon: Update hook_help for Update Manager module
parent
b35223ac98
commit
4f783ea64c
|
@ -73,37 +73,21 @@ function update_help($route_name, RouteMatchInterface $route_match) {
|
|||
case 'help.page.update':
|
||||
$output = '';
|
||||
$output .= '<h3>' . t('About') . '</h3>';
|
||||
$output .= '<p>' . t("The Update Manager module periodically checks for new versions of your site's software (including contributed modules and themes), and alerts administrators to available updates. In order to provide update information, anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update Manager module from the <a href='@modules'>Module administration page</a>. For more information, see the online handbook entry for <a href='@update'>Update Manager module</a>.", [
|
||||
'@update' => 'http://drupal.org/documentation/modules/update',
|
||||
'@modules' => \Drupal::url('system.modules_list'),
|
||||
]) . '</p>';
|
||||
$output .= '<p>' . t('The Update Manager module periodically checks for new versions of your site\'s software (including contributed modules and themes), and alerts administrators to available updates. The Update Manager system is also used by some other modules to manage updates and downloads; for example, the Interface Translation module uses the Update Manager to download translations from the localization server. Note that whenever the Update Manager system is used, anonymous usage statistics are sent to Drupal.org. If desired, you may disable the Update Manager module from the <a href="!modules">Extend page</a>; if you do so, functionality that depends on the Update Manager system will not work. For more information, see <a href="!update">the online documentation for the Update Manager module</a>.', array('!update' => 'http://drupal.org/documentation/modules/update', '!modules' => \Drupal::url('system.modules_list'))) . '</p>';
|
||||
// Only explain the Update manager if it has not been disabled.
|
||||
if (update_manager_access()) {
|
||||
$output .= '<p>' . t('The Update manager also allows administrators to update and install modules and themes through the administration interface.') . '</p>';
|
||||
$output .= '<p>' . t('The Update Manager also allows administrators to update and install modules and themes through the administration interface.') . '</p>';
|
||||
}
|
||||
$output .= '<h3>' . t('Uses') . '</h3>';
|
||||
$output .= '<dl>';
|
||||
$output .= '<dt>' . t('Checking for available updates') . '</dt>';
|
||||
$output .= '<dd>' . t('A report of <a href="@update-report">available updates</a> will alert you when new releases are available for download. You may configure options for the frequency for checking updates (which are performed during <a href="@cron">cron</a> runs) and email notifications at the <a href="@update-settings">Update Manager settings</a> page.', [
|
||||
'@update-report' => \Drupal::url('update.status'),
|
||||
'@cron' => 'http://drupal.org/cron',
|
||||
'@update-settings' => \Drupal::url('update.settings'),
|
||||
]) . '</dd>';
|
||||
$output .= '<dd>' . t('The <a href="!update-report">Available updates report</a> displays core, contributed modules, and themes for which there are new releases available for download. On the report page, you can also check manually for updates. You can configure the frequency of update checks, which are performed during cron runs, and whether notifications are sent on the <a href="!update-settings">Update Manager settings page</a>.', array('!update-report' => \Drupal::url('update.status'), '!update-settings' => \Drupal::url('update.settings'))) . '</dd>';
|
||||
// Only explain the Update manager if it has not been disabled.
|
||||
if (update_manager_access()) {
|
||||
$output .= '<dt>' . t('Performing updates through the user interface') . '</dt>';
|
||||
$output .= '<dd>' . t('The Update Manager module allows administrators to perform updates directly through the administration interface. At the top of the <a href="@modules_page">modules</a> and <a href="@themes_page">themes</a> pages you will see a link to update to new releases. This will direct you to the <a href="@update-page">update page</a> where you see a listing of all the missing updates and confirm which ones you want to upgrade. From there, you are prompted for your FTP/SSH password, which then transfers the files into your Drupal installation, overwriting your old files. More detailed instructions can be found in the <a href="@update">online handbook</a>.', [
|
||||
'@modules_page' => \Drupal::url('system.modules_list'),
|
||||
'@themes_page' => \Drupal::url('system.themes_page'),
|
||||
'@update-page' => \Drupal::url('update.report_update'),
|
||||
'@update' => 'http://drupal.org/documentation/modules/update',
|
||||
]) . '</dd>';
|
||||
$output .= '<dt>' . t('Installing new modules and themes through the user interface') . '</dt>';
|
||||
$output .= '<dd>' . t('You can also install new modules and themes in the same fashion, through the <a href="@install">install page</a>, or by clicking the <em>Install new module/theme</em> link at the top of the <a href="@modules_page">modules</a> and <a href="@themes_page">themes</a> pages. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.', [
|
||||
'@modules_page' => \Drupal::url('system.modules_list'),
|
||||
'@themes_page' => \Drupal::url('system.themes_page'),
|
||||
'@install' => \Drupal::url('update.report_install'),
|
||||
]) . '</dd>';
|
||||
$output .= '<dt>' . t('Performing updates through the Update page') . '</dt>';
|
||||
$output .= '<dd>' . t('The Update Manager module allows administrators to perform updates directly from the <a href="!update-page">Update page</a>. It lists all available updates, and you can confirm whether you want to download them. If you don\'t have sufficient access rights to your web server, you could be prompted for your FTP/SSH password. Afterwards the files are transferred into your site installation, overwriting your old files. Direct links to the Update page are also displayed on the <a href="!modules_page">Extend page</a> and the <a href="!themes_page">Appearance page</a>.', array('!modules_page' => \Drupal::url('system.modules_list'), '!themes_page' => \Drupal::url('system.themes_page'), '!update-page' => \Drupal::url('update.report_update'))) . '</dd>';
|
||||
$output .= '<dt>' . t('Installing new modules and themes through the Install page') . '</dt>';
|
||||
$output .= '<dd>' . t('You can also install new modules and themes in the same fashion, through the <a href="!install">Install page</a>, or by clicking the <em>Install new module/theme</em> links at the top of the <a href="!modules_page">Extend page</a> and the <a href="!themes_page">Appearance page</a>. In this case, you are prompted to provide either the URL to the download, or to upload a packaged release file from your local computer.', array('!modules_page' => \Drupal::url('system.modules_list'), '!themes_page' => \Drupal::url('system.themes_page'), '!install' => \Drupal::url('update.report_install'))) . '</dd>';
|
||||
}
|
||||
$output .= '</dl>';
|
||||
return $output;
|
||||
|
|
Loading…
Reference in New Issue