_system_sql
- Versions
- 5 – 6
_system_sql($data, $keys)
Code
modules/system/system.module, line 1782
<?php
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 