views_handler_field_block_visibility.inc in Views Hacks 6
Same filename and directory in other branches
File
views_block/handlers/views_handler_field_block_visibility.incView source
<?php
class views_handler_field_block_visibility extends views_handler_field {
function render($values) {
$strings = array(
t('All except listed pages'),
t('Only listed pages'),
t('PHP code'),
);
return $strings[$values->{$this->field_alias}];
}
}
Classes
Name | Description |
---|---|
views_handler_field_block_visibility |