You are here

public function FeedsQueryPathParser::configForm in Feeds QueryPath Parser 7

Same name and namespace in other branches
  1. 6 FeedsQueryPathParser.inc \FeedsQueryPathParser::configForm()

Override parent::configForm().

File

./FeedsQueryPathParser.inc, line 224
Provides the class for FeedsQueryPathParser.

Class

FeedsQueryPathParser
@file

Code

public function configForm(&$form_state) {
  $form = $this
    ->sourceForm($this->config);
  $form['querypath']['context']['#required'] = FALSE;
  $form['querypath']['#collapsed'] = FALSE;
  return $form;
}