You are here

scald_views_handler_filter_atom_type.inc in Scald: Media Management made easy 7

Same filename and directory in other branches
  1. 6 includes/scald_views_handler_filter_atom_type.inc

Filter by Scald Atom type.

File

includes/scald_views_handler_filter_atom_type.inc
View source
<?php

/**
 * @file
 * Filter by Scald Atom type.
 */
class scald_views_handler_filter_atom_type extends views_handler_filter_in_operator {

  /**
   * Overrides views_handler_filter_in_operator::get_value_options().
   */
  function get_value_options() {
    if (!isset($this->value_options)) {
      $this->value_title = t('Atom type');
      $types = scald_types();
      $options = array();
      foreach ($types as $type => $info) {
        $options[$type] = scald_type_property_translate($info);
      }
      $this->value_options = $options;
    }
  }

}

Classes

Namesort descending Description
scald_views_handler_filter_atom_type @file Filter by Scald Atom type.