You are here

function views_handler_weight_selector::init in Weight 7.3

Init the handler with necessary data.

Parameters

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

array $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

views/views_handler_weight_selector.inc, line 5

Class

views_handler_weight_selector

Code

function init(&$view, &$options) {
  parent::init($view, $options);
  $this->options['weight_selector'] = TRUE;
}