blob: c93b9e9ce270585460e7c5dbfbcd8370b140de41 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<?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_conf_options() {
$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;
}
?>
|