| Versionen | |
|---|---|
| drupal6 – drupal7 | filter_admin_configure_page($format) |
Menu callback; display settings defined by a format's filters.
modules/
<?php
function filter_admin_configure_page($format) {
drupal_set_title(t("Configure %format", array('%format' => $format->name)));
return drupal_get_form('filter_admin_configure', $format);
}
?>
Kommentare
Kommentar hinzufügen