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

Add descriptions to OPML parser.

parent 234895c9
No related branches found
No related tags found
No related merge requests found
......@@ -30,8 +30,14 @@ class FeedsOPMLParser extends FeedsParser {
*/
public function getMappingSources() {
return array(
'title' => t('Feed title'),
'xmlurl' => t('Feed URL'),
);
'title' => array(
'name' => t('Feed title'),
'description' => t('Title of the feed.'),
),
'xmlurl' => array(
'name' => t('Feed URL'),
'description' => t('URL of the feed.'),
),
);
}
}
\ No newline at end of file
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