diff --git a/includes/feed.inc b/includes/feed.inc index 5aec3ff5e1b0b0d9baca8a4bd425043a3c76dfb2..fd4953d04ee858d441dea9c8ea9dfcea081dcaea 100644 --- a/includes/feed.inc +++ b/includes/feed.inc @@ -339,6 +339,8 @@ class FeedsFetcher extends FeedsConfigurable { * * @param $source * Source value as entered by user through sourceForm(). + * + * @todo: Define format of return value? */ public function fetch($source) { return NULL; @@ -349,9 +351,28 @@ class FeedsFetcher extends FeedsConfigurable { * Abstract class, defines interface for parsers. */ class FeedsParser extends FeedsConfigurable { + + /** + * Parse content fetched by fetcher. + * + * Stub method. Extending classes must implement this method. + * + * @param $raw + * Content returned by fetcher. + * @return + * A parsed array. + * @todo: define this array (object?). + */ public function parse($raw) { return NULL; } + + /** + * Declare the possible mapping sources that this parser produces. + * + * @return + * An array of mapping sources. + */ public function getMappingSources() { return NULL; } @@ -361,9 +382,24 @@ class FeedsParser extends FeedsConfigurable { * Abstract class, defines interface for processors. */ class FeedsProcessor extends FeedsConfigurable { + + /** + * Process the result of the parser or previous processors. + * + * Stub method. Extending classes must implement this method. + * + * @param $feed + * Result returned by parser. + */ public function process($feed) { - return NULL; } + + /** + * Declare possible mapping targets. + * + * @return + * An array of mapping targets. + */ public function getMappingTargets() { return NULL; }