theme_node_admin_overview
- Versions
- 7
theme_node_admin_overview($variables)
Code
modules/node/content_types.inc, line 56
<?php
function theme_node_admin_overview($variables) {
$name = $variables['name'];
$type = $variables['type'];
$output = check_plain($name);
$output .= ' <small> (Machine name: ' . check_plain($type->type) . ')</small>';
$output .= '<div class="description">' . filter_xss_admin($type->description) . '</div>';
return $output;
}
?>Login or register to post comments 