flag_lists_handler_filter_list.inc 482 B

1234567891011121314151617181920
  1. <?php
  2. /**
  3. * @file flag_lists_handler_filter_list.inc
  4. * Filter by flag lists
  5. *
  6. * https://api.drupal.org/api/examples/ajax_example!ajax_example_autocomplete.inc/7
  7. */
  8. class flag_lists_handler_filter_list extends views_handler_filter_string {
  9. function value_form(&$form, &$form_state) {
  10. parent::value_form($form, $form_state);
  11. if ( $form['value']['#type'] == 'textfield') {
  12. $form['value']['#autocomplete_path'] =
  13. 'flag-lists/autocomplete_list_callback';
  14. }
  15. }
  16. }