filter_admin_order_page

Definition

filter_admin_order_page($format)
modules/filter/filter.admin.inc, line 328

Description

Menu callback; display form for ordering filters for a format.

Code

<?php
function filter_admin_order_page($format) {
  drupal_set_title(t("Rearrange %format", array('%format' => $format->name)));
  return drupal_get_form('filter_admin_order', $format);
}
?>
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.