function views_handler_area::init

Overrides views_handler::init

File

handlers/views_handler_area.inc, line 25

Class

views_handler_area
Base class for area handlers.

Code

public function init(&$view, &$options) {
    parent::init($view, $options);
    // Make sure that no result area handlers are set to be shown when the
    // result is empty.
    if ($this->handler_type == 'empty') {
        $this->options['empty'] = TRUE;
    }
}