You are here

function supersized_context_condition::editor_form in Supersized 7

Same name and namespace in other branches
  1. 8 supersized_context/supersized_context_condition.inc \supersized_context_condition::editor_form()

Override editor_form().

Overrides context_condition::editor_form

File

supersized_context/supersized_context_condition.inc, line 20
Condition class of supersized.

Class

supersized_context_condition
@file Condition class of supersized.

Code

function editor_form($context = NULL) {
  $form = parent::editor_form($context);
  $form[1]['#title'] = t('Active if no supersized assigned either in the node or by context.');
  $form['#weight'] = -10;
  return $form;
}