You are here

public function party_plugin_row_attached_entity::options_form in Party 7

Same name and namespace in other branches
  1. 8.2 includes/views/party_plugin_row_attached_entity.inc \party_plugin_row_attached_entity::options_form()

Provide a form for setting options.

Overrides views_plugin_row::options_form

File

includes/views/party_plugin_row_attached_entity.inc, line 18
Row style plugin for displaying entities attached to a party. This will produce multiple rows per party, and is mostly intended for views which are filtered to a single party, thus showing a list of all of a party's attached entities.

Class

party_plugin_row_attached_entity
Plugin class for displaying party attached entities with entity_view.

Code

public function options_form(&$form, &$form_state) {
  $form['note'] = array(
    '#markup' => t('Some options may go here in due course.'),
  );
  return $form;
}