public function FeedsJSONPathParser::configForm in Feeds JSONPath Parser 6
Same name and namespace in other branches
- 7 FeedsJSONPathParser.inc \FeedsJSONPathParser::configForm()
Override parent::configForm().
Overrides FeedsConfigurable::configForm
File
- ./
FeedsJSONPathParser.inc, line 210 - Provides the Class for Feeds JSONPath Parser.
Class
- FeedsJSONPathParser
- Base class for the HTML and XML parsers.
Code
public function configForm(&$form_state) {
$form = $this
->sourceForm($this->config);
$form['jsonpath']['context']['#required'] = FALSE;
$form['jsonpath']['#collapsed'] = FALSE;
return $form;
}