You are here

views_handler_filter_fontyourface_foundry.inc in @font-your-face 7.2

Views handler.

File

modules/fontyourface_ui/views/views_handler_filter_fontyourface_foundry.inc
View source
<?php

/**
 * @file
 * Views handler.
 */

/**
 * Filters by provider.
 */
class views_handler_filter_fontyourface_foundry extends views_handler_filter_in_operator {
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Provider');
      $options = array();
      $foundries = db_select('fontyourface_font', 'f')
        ->fields('f', array(
        'foundry',
      ))
        ->distinct()
        ->execute();
      foreach ($foundries as $foundry) {
        $options[$foundry->foundry] = $foundry->foundry;
      }

      // foreach
      asort($options);
      $this->value_options = $options;
    }

    // if
  }

}

// views_handler_filter_fontyourface_foundry

Classes

Namesort descending Description
views_handler_filter_fontyourface_foundry Filters by provider.