You are here

function views_handler_field_boolean::init in Views (for Drupal 7) 6.2

Same name and namespace in other branches
  1. 6.3 handlers/views_handler_field_boolean.inc \views_handler_field_boolean::init()
  2. 7.3 handlers/views_handler_field_boolean.inc \views_handler_field_boolean::init()

init the handler with necessary data.

Parameters

$view: The $view object this handler is attached to.

$options: The item from the database; the actual contents of this will vary based upon the type of handler.

Overrides views_handler_field::init

File

handlers/views_handler_field_boolean.inc, line 28

Class

views_handler_field_boolean
A handler to provide proper displays for booleans.

Code

function init(&$view, $options) {
  parent::init($view, $options);
  $default_formats = array(
    'yes-no' => array(
      t('Yes'),
      t('No'),
    ),
    'true-false' => array(
      t('True'),
      t('False'),
    ),
    'on-off' => array(
      t('On'),
      t('Off'),
    ),
  );
  $output_formats = isset($this->definition['output formats']) ? $this->definition['output formats'] : array();
  $this->formats = array_merge($default_formats, $output_formats);
}