summaryrefslogtreecommitdiff
path: root/modules/development.module
diff options
context:
space:
mode:
authorDries Buytaert <dries@buytaert.net>2003-02-16 08:25:07 +0000
committerDries Buytaert <dries@buytaert.net>2003-02-16 08:25:07 +0000
commitb29f1bff7fa95270644d4d4db42bbe3d92cbb0d6 (patch)
treee4e51525d76859a2c51ba6b95d76418ddc0b264c /modules/development.module
parent8f190d131be384034061439224015db95bd00c23 (diff)
downloadbrdo-b29f1bff7fa95270644d4d4db42bbe3d92cbb0d6.tar.gz
brdo-b29f1bff7fa95270644d4d4db42bbe3d92cbb0d6.tar.bz2
- Removed from the main repository. See 'contrib/modules/devel' for a more
advanced development module maintained by Moshe.
Diffstat (limited to 'modules/development.module')
-rw-r--r--modules/development.module22
1 files changed, 0 insertions, 22 deletions
diff --git a/modules/development.module b/modules/development.module
deleted file mode 100644
index 653c521a8..000000000
--- a/modules/development.module
+++ /dev/null
@@ -1,22 +0,0 @@
-<?php
-
-// This module is holds functions useful for Drupal development.
-// Please contribute!
-
-function development_exit() {
- if (variable_get("dev_query", 0)) {
- query_print();
- }
-}
-
-function development_system($field) {
- $system["description"] = t("Enables features and functions to help Drupal development.");
- return $system[$field];
-}
-
-function development_settings() {
- $output = form_select(t("Display query log"), "dev_query", variable_get("dev_query", 0), array(t("Disabled"), t("Enabled")), t("Display a log of the database queries needed to generate the current page, and the execution time for each."));
- return $output;
-}
-
-?>