diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-12-16 11:44:41 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-12-16 11:44:41 +0000 |
commit | a0ddc1af74d04b7c95968fcab43d4de727bae5ad (patch) | |
tree | 3a675f8fc8c112bb7ffce40e2a69a94c22f15db6 /modules/system/system.module | |
parent | 90ddfb943f429308260bc1ceac8ccac8216bfb87 (diff) | |
download | brdo-a0ddc1af74d04b7c95968fcab43d4de727bae5ad.tar.gz brdo-a0ddc1af74d04b7c95968fcab43d4de727bae5ad.tar.bz2 |
- Added new feature. Explanation will follow on the mailing list.
Diffstat (limited to 'modules/system/system.module')
-rw-r--r-- | modules/system/system.module | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/modules/system/system.module b/modules/system/system.module index 9a86ea9db..d9d5c633c 100644 --- a/modules/system/system.module +++ b/modules/system/system.module @@ -30,11 +30,12 @@ function system_view_options() { // general settings: $output .= "<h3>General settings</h3>\n"; - $output .= form_textfield("Name", "site_name", variable_get("site_name", "drupal"), 30, 55, "The name of this website."); - $output .= form_textfield("E-mail address", "site_mail", variable_get("site_mail", "root@localhost"), 35, 55, "A valid e-mail address for this website, used by the auto-mailer to create new user accounts."); + $output .= form_textfield("Name", "site_name", variable_get("site_name", "drupal"), 55, 55, "The name of this website."); + $output .= form_textfield("E-mail address", "site_mail", variable_get("site_mail", "root@localhost"), 55, 128, "A valid e-mail address for this website, used by the auto-mailer to create new user accounts."); $output .= form_textfield("Slogan", "site_slogan", variable_get("site_slogan", ""), 55, 128, "The slogan of this website"); - $output .= form_textarea("Footer message", "site_footer", variable_get("site_footer", ""), 55, 3, "This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages."); - $output .= form_textfield("Anonymous user", "anonymous", variable_get("anonymous", "Anonymous"), 30, 55, "The name used to indicate anonymous users."); + $output .= form_textarea("Mission", "site_mission", variable_get("site_mission", ""), 55, 5, "Your site's mission statement or focus."); + $output .= form_textarea("Footer message", "site_footer", variable_get("site_footer", ""), 55, 5, "This text will be displayed at the bottom of each page. Useful for adding a copyright notice to your pages."); + $output .= form_textfield("Anonymous user", "anonymous", variable_get("anonymous", "Anonymous"), 55, 55, "The name used to indicate anonymous users."); foreach (module_list() as $name) { if (module_hook($name, "page")) $pages[$name] = $name; } $output .= form_select("Default front page", "site_frontpage", variable_get("site_frontpage", "node"), $pages, "The default front page."); $output .= form_textfield("Extra front page settings", "site_frontpage_extra", variable_get("site_frontpage_extra", ""), 55, 128, "Lets you define additonal variables for the main page in PHP."); |