You are here

public function revisioning_handler_filter_revision_latest::get_value_options in Revisioning 7

Same name and namespace in other branches
  1. 8 views/revisioning_handler_filter_revision_latest.inc \revisioning_handler_filter_revision_latest::get_value_options()

Get the value options.

Overrides views_handler_filter_boolean_operator::get_value_options

File

views/revisioning_handler_filter_revision_latest.inc, line 45
Views filter to display in a 'Content revisions' view only published revisions. Does not work in a standard 'Content' view.

Class

revisioning_handler_filter_revision_latest
@file Views filter to display in a 'Content revisions' view only published revisions. Does not work in a standard 'Content' view.

Code

public function get_value_options() {
  $this->value_options = array(
    1 => t('Latest only'),
  );
}