function messaging_log_format in Messaging 6.3
Same name and namespace in other branches
- 6.4 messaging.module \messaging_log_format()
- 6.2 messaging.module \messaging_log_format()
- 7 messaging_devel/messaging_devel.module \messaging_log_format()
Format logs
1 call to messaging_log_format()
- messaging_debug_footer in messaging_debug/
messaging_debug.module - Implementation of hook_footer()
File
- ./
messaging.module, line 1054
Code
function messaging_log_format($logs) {
$rows = array();
foreach ($logs as $log) {
list($type, $string, $append, $objects) = _messaging_log_prepare($log);
// Full objects/arrays are only rendered when debug module is enabled
if ($objects && function_exists('_messaging_debug_format_log')) {
$text = _messaging_debug_format_log($type, $string, $append, $objects);
}
else {
$text = $string;
if ($append) {
$text .= '<br />' . implode(' ', $append);
}
}
$rows[] = array(
$type,
$text,
);
}
return theme('table', array(
t('Type'),
t('Message'),
), $rows);
}