| Versionen | |
|---|---|
| drupal6 – drupal7 | theme_node_add_list($content) |
Display the list of available node types for node creation.
modules/
<?php
function theme_node_add_list($content) {
$output = '';
if ($content) {
$output = '<dl class="node-type-list">';
foreach ($content as $item) {
$output .= '<dt>' . l($item['title'], $item['href'], $item['localized_options']) . '</dt>';
$output .= '<dd>' . filter_xss_admin($item['description']) . '</dd>';
}
$output .= '</dl>';
}
return $output;
}
?>
Kommentare
Kommentar hinzufügen