You are here

function context_metadata_reaction::options_form in Context Metadata 6

Same name and namespace in other branches
  1. 7 plugins/context_metadata_reaction.inc \context_metadata_reaction::options_form()

File

plugins/context_metadata_reaction.inc, line 8
Output context maxage.

Class

context_metadata_reaction
@file Output context maxage.

Code

function options_form($context) {
  $values = $this
    ->fetch_from_context($context);
  $form['metadata_title'] = array(
    '#title' => t('Meta Title'),
    '#description' => t('Title goes here'),
    '#type' => 'textfield',
    '#maxlength' => 256,
    '#default_value' => isset($values['metadata_title']) ? $values['metadata_title'] : '',
  );
  $form['metadata_description'] = array(
    '#title' => t('Meta Description'),
    '#description' => t('Meta Description'),
    '#type' => 'textfield',
    '#maxlength' => 400,
    '#default_value' => isset($values['metadata_description']) ? $values['metadata_description'] : '',
  );
  $form['metadata_keywords'] = array(
    '#title' => t('Meta Keywords'),
    '#description' => t('Meta Keywords'),
    '#type' => 'textfield',
    '#maxlength' => 400,
    '#default_value' => isset($values['metadata_keywords']) ? $values['metadata_keywords'] : '',
  );
  $form['metadata_canonical'] = array(
    '#title' => t('Canonical URL'),
    '#description' => t('Canonical URL'),
    '#type' => 'textfield',
    '#maxlength' => 400,
    '#default_value' => isset($values['metadata_canonical']) ? $values['metadata_canonical'] : '',
  );
  if (module_exists('token')) {
    $form['token_help'] = array(
      '#title' => t('Replacement patterns'),
      '#type' => 'fieldset',
      '#collapsible' => TRUE,
      '#collapsed' => TRUE,
    );
    $form['token_help']['help'] = array(
      '#value' => theme('token_help', 'node'),
    );
  }
  return $form;
}