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
@@ -22,9 +22,9 @@ function path_help($path, $arg) {
$output.='<p>'.t('This module also provides user-defined mass URL aliasing capabilities, which is useful if you wish to uniformly use URLs different from the default. For example, you may want to have your URLs presented in a different language. Access to the Drupal source code on the web server is required to set up mass URL aliasing.').' </p>';
$output.='<p>'.t('For more information, see the online handbook entry for <a href="@path">Path module</a>.',array('@path'=>'http://drupal.org/handbook/modules/path/')).'</p>';
return$output;
case'admin/build/path':
case'admin/settings/path':
return'<p>'.t("Drupal provides complete control over URLs through aliasing, which is often used to make URLs more readable or easy to remember. For example, the alias 'about' may be mapped onto the post at the system path 'node/1', creating a more meaningful URL. Each system path can have multiple aliases.").'</p>';
case'admin/build/path/add':
case'admin/settings/path/add':
return'<p>'.t('Enter the path you wish to create the alias for, followed by the name of the new alias.').'</p>';
}
}
...
...
@@ -33,31 +33,31 @@ function path_help($path, $arg) {
* Implement hook_menu().
*/
functionpath_menu(){
$items['admin/build/path']=array(
$items['admin/settings/path']=array(
'title'=>'URL aliases',
'description'=>"Change your site's URL paths by aliasing them.",