public function FeedsCrawler::configForm in Feeds Crawler 7
Same name and namespace in other branches
- 6.2 FeedsCrawler.inc \FeedsCrawler::configForm()
Overrides parent::configForm().
File
- ./
FeedsCrawler.inc, line 319 - Home of the FeedsCrawler.
Class
- FeedsCrawler
- Fetches data via HTTP.
Code
public function configForm(&$form_state) {
$form = $this
->sourceForm($this->config);
unset($form['source']);
unset($form['crawled']);
$form['crawler']['#title'] = t('Feeds Crawler default settings');
return parent::configForm($form_state) + $form;
}