You are here

function og_context_configure_form in Organic groups 7.2

Same name and namespace in other branches
  1. 7 og_context/og_context.admin.inc \og_context_configure_form()

Setting for language negotiation options

1 string reference to 'og_context_configure_form'
og_context_menu in og_context/og_context.module
Implements hook_menu().

File

og_context/og_context.admin.inc, line 11
Administration functions for OG context module.

Code

function og_context_configure_form() {
  $form = array(
    '#submit' => array(
      'og_context_configure_form_submit',
    ),
    '#theme' => 'og_context_configure_form',
    '#group_context_providers' => og_context_negotiation_info(),
  );
  _og_context_configure_form_table($form);
  $form['actions'] = array(
    '#type' => 'actions',
  );
  $form['actions']['submit'] = array(
    '#type' => 'submit',
    '#value' => t('Save settings'),
  );
  return $form;
}