You are here

public function FeedsFetcher::request in Feeds 7.2

Same name and namespace in other branches
  1. 6 plugins/FeedsFetcher.inc \FeedsFetcher::request()
  2. 7 plugins/FeedsFetcher.inc \FeedsFetcher::request()

Request handler invoked if callback URL is requested. Locked down by default. For a example usage see FeedsHTTPFetcher.

Note: this method may exit the script.

Return value

A string to be returned to the client.

1 method overrides FeedsFetcher::request()
FeedsHTTPFetcher::request in plugins/FeedsHTTPFetcher.inc
Implements FeedsFetcher::request().

File

plugins/FeedsFetcher.inc, line 334
Contains the FeedsFetcher and related classes.

Class

FeedsFetcher
Abstract class, defines shared functionality between fetchers.

Code

public function request($feed_nid = 0) {
  drupal_access_denied();
}