You are here

function views_customfield_handler_field_markup::options_form in Views Custom Field 6

File

includes/views_customfield_handler_field_markup.inc, line 27
Contains the 'customfield' markup field handler.

Class

views_customfield_handler_field_markup
Field handler to display custom markup text.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['value'] = array(
    '#type' => 'textarea',
    '#title' => t('Value'),
    '#default_value' => $this->options['value'],
    '#rows' => 5,
  );
  $form['format'] = filter_form($this->options['format'], NULL, array(
    'options',
    'format',
  ));
}