Skip to content
Snippets Groups Projects
Commit 08efad3c authored by Alex Barth's avatar Alex Barth
Browse files

Improve documentation.

parent c1cbe130
No related branches found
No related tags found
No related merge requests found
...@@ -61,10 +61,10 @@ interface FeedsSourceInterface { ...@@ -61,10 +61,10 @@ interface FeedsSourceInterface {
* therefore a FeedsImporter never holds a pointer to a FeedsSource object, nor * therefore a FeedsImporter never holds a pointer to a FeedsSource object, nor
* does it hold any other information for a particular FeedsSource object. * does it hold any other information for a particular FeedsSource object.
* *
* FeedsPlugins that implement FeedsSourceInterface and return TRUE on * Classes extending FeedsPlugin can implement a sourceForm to expose
* hasSourceConfig() can define default values and forms that allow for * configuration for a FeedsSource object. This is for instance how FeedsFetcher
* configuration of the FeedsSource. For an example, see FeedsFetcher and * exposes a text field for a feed URL or how FeedsCSVParser exposes a select
* FeedsHTTPFetcher. * field for choosing between colon or semicolon delimiters.
* *
* It is important that a FeedsPlugin does not directly hold information about * It is important that a FeedsPlugin does not directly hold information about
* a source but leave all storage up to FeedsSource. An instance of a * a source but leave all storage up to FeedsSource. An instance of a
...@@ -72,9 +72,7 @@ interface FeedsSourceInterface { ...@@ -72,9 +72,7 @@ interface FeedsSourceInterface {
* instance of a FeedsSource class exists once per feed_nid to be imported. * instance of a FeedsSource class exists once per feed_nid to be imported.
* *
* As with FeedsImporter, the idea with FeedsSource is that it can be used * As with FeedsImporter, the idea with FeedsSource is that it can be used
* without actually saving the object to the database ( * without actually saving the object to the database.
*
* @todo Test whether FeedsSource can be used without saving it.
*/ */
class FeedsSource extends FeedsConfigurable { class FeedsSource extends FeedsConfigurable {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment