You are here

views_handler_filter_block_format.inc in Views Hacks 7

Same filename and directory in other branches
  1. 6 views_block/handlers/views_handler_filter_block_format.inc

File

views_block/handlers/views_handler_filter_block_format.inc
View source
<?php

/**
 * Filter based on block body format.
 */
class views_handler_filter_block_format extends views_handler_filter_in_operator {
  function get_value_options() {
    foreach (filter_formats() as $fid => $format) {
      $this->value_options[$fid] = $format->name;
    }
  }

}

Classes

Namesort descending Description
views_handler_filter_block_format Filter based on block body format.