You are here

function views_handler::is_exposed in Views (for Drupal 7) 6.3

Same name and namespace in other branches
  1. 6.2 includes/handlers.inc \views_handler::is_exposed()
  2. 7.3 includes/handlers.inc \views_handler::is_exposed()

Determine if this item is 'exposed', meaning it provides form elements to let users modify the view.

Return value

TRUE/FALSE

File

includes/handlers.inc, line 687
handlers.inc Defines the various handler objects to help build and display views.

Class

views_handler
Base handler, from which all the other handlers are derived. It creates a common interface to create consistency amongst handlers and data.

Code

function is_exposed() {
  return !empty($this->options['exposed']);
}