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
@@ -43,8 +43,11 @@ function system_help($section) {
...
@@ -43,8 +43,11 @@ function system_help($section) {
$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')));
case'admin/settings/modules':
case'admin/settings/modules':
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>',array('@permissions'=>url('admin/user/access'),'@throttle'=>url('admin/settings/throttle'),'@update-php'=>$base_url.'/update.php'));
}
break;
case'admin/logs/status':
case'admin/logs/status':
returnt('<p>Here you can find a short overview of your Drupal site\'s parameters as well as any problems detected with your installation. It is useful to copy/paste this information when you need support.</p>');
returnt('<p>Here you can find a short overview of your Drupal site\'s parameters as well as any problems detected with your installation. It is useful to copy/paste this information when you need support.</p>');
}
}
...
@@ -1217,80 +1220,245 @@ function system_themes_submit($form_id, $form_values) {
...
@@ -1217,80 +1220,245 @@ function system_themes_submit($form_id, $form_values) {
}
}
/**
/**
* Menu callback; displays a listing of all modules.
* Menu callback; provides module enable/disable interface.
*
* Modules can be enabled or disabled and set for throttling if the throttle module is enabled.
* The list of modules gets populated by module.info files, which contain each module's name,
* description and dependencies.
* @sa _module_parse_info_file for information on module.info descriptors.
*
* Dependency checking is performed to ensure that a module cannot be enabled if the module has
* disabled dependencies and also to ensure that the module cannot be disabled if the module has