function views_handler_field_custom::options_form

3.x views_handler_field_custom.inc views_handler_field_custom::options_form(&$form, &$form_state)
2.x views_handler_field_custom.inc views_handler_field_custom::options_form(&$form, &$form_state)

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

Overrides views_handler_field::options_form

File

handlers/views_handler_field_custom.inc, line 27
Definition of views_handler_field_custom.

Class

views_handler_field_custom
A handler to provide a field that is completely custom by the administrator.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);

  // Remove the checkbox
  unset($form['alter']['alter_text']);
  unset($form['alter']['text']['#dependency']);
  unset($form['alter']['text']['#process']);
  unset($form['alter']['help']['#dependency']);
  unset($form['alter']['help']['#process']);
  $form['#pre_render'][] = 'views_handler_field_custom_pre_render_move_text';
}