You are here

views_handler_field_block_format.inc in Views Hacks 7

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

File

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

class views_handler_field_block_format extends views_handler_field {
  function render($values) {
    if (!isset($values->{$this->field_alias})) {
      return '';
    }
    $formats = filter_formats();
    return $formats[$values->{$this->field_alias}]->name;
  }

}