You are here

views_handler_field_filter_format_name.inc in Views (for Drupal 7) 6.3

File

modules/filter/views_handler_field_filter_format_name.inc
View source
<?php

/**
 * Field handler to output the name of an input format.
 *
 * @ingroup views_field_handlers
 */
class views_handler_field_filter_format_name extends views_handler_field {
  function construct() {
    parent::construct();

    // Be explicit about the table we are using.
    $this->additional_fields['name'] = array(
      'table' => 'filter_formats',
      'field' => 'name',
    );
  }
  function query() {
    $this
      ->ensure_my_table();
    $this
      ->add_additional_fields();
  }
  function render($values) {
    $format_name = $this
      ->get_value($values, 'name');
    if (!$format_name) {

      // Default or invalid input format.
      // filter_formats() will reliably return the default format even if the
      // current user is unprivileged.
      $format = filter_formats(variable_get('filter_default_format', 1));
      return $this
        ->sanitize_value($format->name);
    }
    return $this
      ->sanitize_value($format_name);
  }

}

Classes

Namesort descending Description
views_handler_field_filter_format_name Field handler to output the name of an input format.