You are here

function editableviews_handler_field_node_title_edit::options_form in Editable Views 7

Provide link to node option.

Overrides views_handler_field_node::options_form

File

handlers/editableviews_handler_field_node_title_edit.inc, line 24

Class

editableviews_handler_field_node_title_edit
Field handler for node title editable field.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['textfield_size'] = array(
    '#type' => 'textfield',
    '#title' => t('Textfield size'),
    '#description' => t("The size of the textfield for this form element."),
    '#default_value' => $this->options['textfield_size'],
    '#size' => 6,
  );
}