From 2c249cdeac1b86d8a0e8fd4a08b4941b118fb1e5 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Mon, 2 Nov 2009 20:22:03 +0000 Subject: [PATCH] Add descriptions to OPML parser. --- plugins/FeedsOPMLParser.inc | 12 +++++++++--- 1 file changed, 9 insertions(+), 3 deletions(-) diff --git a/plugins/FeedsOPMLParser.inc b/plugins/FeedsOPMLParser.inc index c523c544..b525f125 100644 --- a/plugins/FeedsOPMLParser.inc +++ b/plugins/FeedsOPMLParser.inc @@ -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 -- GitLab