summaryrefslogtreecommitdiff
path: root/modules/drupal/drupal.module
diff options
context:
space:
mode:
authorKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-06-01 21:57:29 +0000
committerKjartan Mannes <kjartan@2.no-reply.drupal.org>2002-06-01 21:57:29 +0000
commit4a28077f468f0a688cd70f3b43e5ffc242bcb49a (patch)
tree8913da6bf5a92e28d06f04db9635c1b93c4c8fe3 /modules/drupal/drupal.module
parent59082a5f19aded411f474fcd88220a06a02f06f4 (diff)
downloadbrdo-4a28077f468f0a688cd70f3b43e5ffc242bcb49a.tar.gz
brdo-4a28077f468f0a688cd70f3b43e5ffc242bcb49a.tar.bz2
- adding descriptions to modules (thanks Joe + Scott).
- fixed comment flat list view missing 1 comment. - changed update.php around a bit. * security check isn't in effect if the db hasn't been updated. * instructions re-organized. * fixed some minor updates. - updated database.mysql done by UnConeD. - changelog update.
Diffstat (limited to 'modules/drupal/drupal.module')
-rw-r--r--modules/drupal/drupal.module5
1 files changed, 5 insertions, 0 deletions
diff --git a/modules/drupal/drupal.module b/modules/drupal/drupal.module
index 0a1cb8639..6468076eb 100644
--- a/modules/drupal/drupal.module
+++ b/modules/drupal/drupal.module
@@ -1,5 +1,10 @@
<?php
+function drupal_system($field){
+ $system["description"] = t("You'll need this :-)");
+ return $system[$field];
+}
+
function drupal_conf_options() {
$output .= form_textfield("Drupal server", "drupal_server", variable_get("drupal_server", "http://www.drupal.org/xmlrpc.php"), 55, 128, "The URL of your root Drupal XML-RPC server.");
$output .= form_select("Drupal directory", "drupal_directory", variable_get("drupal_directory", 0), array("Disabled", "Enabled"), "If enabled, your Drupal site will make itself know to the Drupal directory at the specified Drupal XML-RPC server. For this to work properly, you have to set your site's name, e-mail address, slogan and mission statement.");