| Versionen | |
|---|---|
| drupal7 | theme_filter_guidelines($format) |
Format guidelines for a text format.
modules/
<?php
function theme_filter_guidelines($format) {
$name = isset($format->name) ? '<label>' . $format->name . ':</label>' : '';
return '<div id="filter-guidelines-' . $format->format . '" class="filter-guidelines-item">' . $name . theme('filter_tips', _filter_tips($format->format, FALSE)) . '</div>';
}
?>
Kommentare
Kommentar hinzufügen