blob: ad25b179c35775fb9d0776f106cd7cfe55d5051d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
<?php
function section_get() {
$array = array();
$result = db_query("SELECT name FROM sections");
while ($section = db_fetch_object($result)) array_push($array, $section->name);
return $array;
}
function section_post_threshold($section, $default) {
$section = db_fetch_object(db_query("SELECT post AS threshold FROM sections WHERE name = '". check_input($section) ."'"));
return $section->threshold ? $section->threshold : $default;
}
function section_dump_threshold($section, $default) {
$section = db_fetch_object(db_query("SELECT dump AS threshold FROM sections WHERE name = '". check_input($section) ."'"));
return $section->threshold ? $section->threshold : $default;
}
function section_timout_threshold($section, $default) {
$section = db_fetch_object(db_query("SELECT timout AS threshold FROM sections WHERE name = '". check_input($section) ."'"));
return $section->threshold ? $section->threshold : $default;
}
?>
|