You are here

function views_handler_field_block_custom::render in Views Hacks 6

Same name and namespace in other branches
  1. 7 views_block/handlers/views_handler_field_block_custom.inc \views_handler_field_block_custom::render()

File

views_block/handlers/views_handler_field_block_custom.inc, line 4

Class

views_handler_field_block_custom

Code

function render($values) {
  $strings = array(
    t('Show always'),
    t('Show by default'),
    t('Hide by default'),
  );
  return $strings[$values->{$this->field_alias}];
}