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

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

Overrides views_handler_relationship::options_form

File

core/modules/views/handlers/views_handler_relationship.inc, line 171
Views' relationship handlers.

Class

views_handler_relationship_broken
A special handler to take the place of missing or broken handlers.

Code

function options_form(&$form, &$form_state) {
  $form['markup'] = array(
    '#markup' => '<div class="form-item description">' . t('The handler for this item is broken or missing and cannot be used. If a module provided the handler and was disabled, re-enabling the module may restore it. Otherwise, you should probably delete this item.') . '</div>',
  );
}