You are here

public function FeedsCrawler::configForm in Feeds Crawler 6.2

Same name and namespace in other branches
  1. 7 FeedsCrawler.inc \FeedsCrawler::configForm()

Override parent::configForm().

Overrides FeedsHTTPFetcher::configForm

File

./FeedsCrawler.inc, line 285
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');
  $form['crawler']['#collapsed'] = FALSE;
  return parent::configForm($form_state) + $form;
}