| 5 system.module | _system_sql($data, $keys) |
| 6 system.admin.inc | _system_sql($data, $keys) |
1 call to _system_sql()
File
- modules/
system/ system.module, line 1782 - Configuration system that lets administrators modify the workings of the site.
Code
function _system_sql($data, $keys) {
$rows = array();
foreach ($keys as $key => $explanation) {
if (isset($data[$key])) {
$rows[] = array(check_plain($key), check_plain($data[$key]), $explanation);
}
}
return theme('table', array(t('Variable'), t('Value'), t('Description')), $rows);
}
Login or register to post comments