views_test_area_access.inc in Views (for Drupal 7) 7.3
Definition of views_test_area_access.
File
tests/test_handlers/views_test_area_access.incView source
<?php
/**
* @file
* Definition of views_test_area_access.
*/
/**
* A test access plugin.
*/
class views_test_area_access extends views_handler_area {
/**
* {@inheritdoc}
*/
public function access() {
return $this->options['custom_access'];
}
/**
* {@inheritdoc}
*/
public function option_definition() {
$options = parent::option_definition();
$options['custom_access'] = array(
'default' => TRUE,
'bool' => TRUE,
);
return $options;
}
}
Classes
Name | Description |
---|---|
views_test_area_access | A test access plugin. |