diff options
author | Dries Buytaert <dries@buytaert.net> | 2001-04-15 17:01:32 +0000 |
---|---|---|
committer | Dries Buytaert <dries@buytaert.net> | 2001-04-15 17:01:32 +0000 |
commit | 1f0565806b1809b4c0c0a157f7fbfb4ac611e16a (patch) | |
tree | 85448501218986cca7db81f7ee5f0d3e9f3b7f5d /modules/settings.module | |
parent | f1716fbd9c4fee630fc091d8d9dc87cd105d77da (diff) | |
download | brdo-1f0565806b1809b4c0c0a157f7fbfb4ac611e16a.tar.gz brdo-1f0565806b1809b4c0c0a157f7fbfb4ac611e16a.tar.bz2 |
- improved submit.php:
it now uses the new category code, incl content bindings.
You can setup different "categories" which map on a content
type. Example:
review -> review.module
article -> story.module
column -> story.module
announc. -> story.module
addons -> file.module
themes -> file.module
- "generalised" story.module and book.module's output.
- fixed bug in includes/timer.inc
- fixed glitch in theme example.theme: it said "$how by" but
the variable $how has never been declared.
- added "drupal development settings" to display some timings
- more work on the categories/topics -> does NOT work yet
Diffstat (limited to 'modules/settings.module')
-rw-r--r-- | modules/settings.module | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/modules/settings.module b/modules/settings.module index ff7cc72bf..8fdd27276 100644 --- a/modules/settings.module +++ b/modules/settings.module @@ -19,11 +19,14 @@ function settings_conf() { $output .= "<INPUT NAME=\"edit[site_url]\" MAXLENGTH=\"55\" SIZE=\"30\" VALUE=\"". variable_get(site_url, "http://drupal/") ."\"><BR>\n"; $output .= "<I><SMALL>The fully qualified URL of this website: starts with \"http://\" and ends with a trailing slash!</SMALL></I><P>\n"; + $output .= "<B>Footer message:</B><BR>\n"; + $output .= "<TEXTAREA NAME=\"edit[site_footer]\" COLS=\"55\" ROWS=\"3\" WRAP=\"virtual\">". variable_get(site_footer, "") ."</TEXTAREA><BR>\n"; + $output .= "<I><SMALL>This text will be displayed at the bottom of each page. Useful to add a copyright notice to your pages.</SMALL></I><P>\n"; + $output .= "<B>Anonymous user:</B><BR>\n"; $output .= "<INPUT NAME=\"edit[anonymous]\" MAXLENGTH=\"55\" SIZE=\"30\" VALUE=\"". variable_get(anonymous, "Anonymous") ."\"><BR>\n"; $output .= "<I><SMALL>The name displayed for anonymous users.</SMALL></I><P>\n"; - $output .= "<HR>\n"; $output .= "<H3>Comment settings</H3>\n"; @@ -72,10 +75,6 @@ function settings_conf() { $output .= "<SELECT NAME=\"edit[theme_default]\">$options7</SELECT><BR>\n"; $output .= "<I><SMALL>The default theme displayed for anonymous users.</SMALL></I><P>\n"; - $output .= "<B>Footer message:</B><BR>\n"; - $output .= "<TEXTAREA NAME=\"edit[theme_footer]\" COLS=\"55\" ROWS=\"3\" WRAP=\"virtual\">". variable_get(theme_footer, "") ."</TEXTAREA><BR>\n"; - $output .= "<I><SMALL>This text will be displayed at the bottom of each page. Useful to add a copyright notice to your pages.</SMALL></I><P>\n"; - $output .= "<HR>\n"; $output .= "<H3>Development settings</H3>\n"; |