2 merge requests!7452Issue #1797438. HTML5 validation is preventing form submit and not fully...,!789Issue #3210310: Adjust Database API to remove deprecated Drupal 9 code in Drupal 10
@@ -32,6 +32,8 @@ function system_help($section) {
...
@@ -32,6 +32,8 @@ function system_help($section) {
return$output;
return$output;
case'admin':
case'admin':
returnt('<p>Welcome to the administration section. Here you may control how your site functions.</p>');
returnt('<p>Welcome to the administration section. Here you may control how your site functions.</p>');
case'admin/by-module':
returnt('<p>This page shows you all available administration tasks for each module.</p>');
case'admin/settings/page-caching':
case'admin/settings/page-caching':
returnt('Enabling the cache will offer a sufficient performance boost. Drupal can store and send compressed cached pages requested by "anonymous" users. By caching a web page, Drupal does not have to create the page each time someone wants to view it.');
returnt('Enabling the cache will offer a sufficient performance boost. Drupal can store and send compressed cached pages requested by "anonymous" users. By caching a web page, Drupal does not have to create the page each time someone wants to view it.');
case'admin/build/themes':
case'admin/build/themes':
...
@@ -42,10 +44,10 @@ function system_help($section) {
...
@@ -42,10 +44,10 @@ function system_help($section) {
$reference=explode('.',arg(3),2);
$reference=explode('.',arg(3),2);
$theme=array_pop($reference);
$theme=array_pop($reference);
returnt('<p>These options control the display settings for the <code>%template</code> theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the <a href="@global">global settings</a> for this theme.</p>',array('%template'=>$theme,'@global'=>url('admin/build/themes/settings')));
returnt('<p>These options control the display settings for the <code>%template</code> theme. When your site is displayed using this theme, these settings will be used. By clicking "Reset to defaults," you can choose to use the <a href="@global">global settings</a> for this theme.</p>',array('%template'=>$theme,'@global'=>url('admin/build/themes/settings')));
returnt('<p>Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. Click on the name of the module in the navigation menu for their individual configuration pages. Once a module is enabled, new <a href="@permissions">permissions</a> might be made available. Modules can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by enabling the throttle.module and checking throttle. The auto-throttle functionality must be enabled on the <a href="@throttle">throttle configuration page</a> after having enabled the throttle module.</p>
returnt('<p>Modules are plugins for Drupal that extend its core functionality. Here you can select which modules are enabled. Click on the name of the module in the navigation menu for their individual configuration pages. Once a module is enabled, new <a href="@permissions">permissions</a> might be made available. Modules can automatically be temporarily disabled to reduce server load when your site becomes extremely busy by enabling the throttle.module and checking throttle. The auto-throttle functionality must be enabled on the <a href="@throttle">throttle configuration page</a> after having enabled the throttle module.</p>
<p>It is important that <a href="@update-php">update.php</a> is run every time a module is updated to a newer version.</p>',array('@permissions'=>url('admin/user/access'),'@throttle'=>url('admin/settings/throttle'),'@update-php'=>$base_url.'/update.php'));
<p>It is important that <a href="@update-php">update.php</a> is run every time a module is updated to a newer version.</p><p>You can find all administration tasks belonging to a particular module on the <a href="@by-module">administration by module page</a>.',array('@permissions'=>url('admin/user/access'),'@throttle'=>url('admin/settings/throttle'),'@update-php'=>$base_url.'/update.php','@by-module'=>url('admin/by-module')));
}
}
break;
break;
case'admin/logs/status':
case'admin/logs/status':
...
@@ -114,6 +116,13 @@ function system_menu($may_cache) {
...
@@ -114,6 +116,13 @@ function system_menu($may_cache) {