1 views_handler_area_result.inc views_handler_area_result::options_form(&$form, &$form_state)

Default options form that provides the label widget that all fields should have.

Overrides views_handler_area::options_form

File

core/modules/views/handlers/views_handler_area_result.inc, line 25
Definition of views_handler_area_result.

Class

views_handler_area_result
Views area handler to display some configurable result summary.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $variables = array(
    'items' => array(
      '@start -- the initial record number in the set',
      '@end -- the last record number in the set',
      '@total -- the total records in the set',
      '@name -- the human-readable name of the view',
      '@per_page -- the number of items per page',
      '@current_page -- the current page number',
      '@current_record_count -- the current page record count',
      '@page_count -- the total page count',
    ),
  );
  $list = theme('item_list', $variables);
  $form['content'] = array(
    '#title' => t('Display'),
    '#type' => 'textarea',
    '#rows' => 3,
    '#default_value' => $this->options['content'],
    '#description' => t('You may use HTML code in this field. The following tokens are supported:') . $list,
  );
}