From c768c8ee744d05e7e816e40f193aaab89820995f Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Mon, 2 Nov 2009 20:25:04 +0000 Subject: [PATCH] Add descriptions to mapping targets. --- plugins/FeedsFeedNodeProcessor.inc | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/plugins/FeedsFeedNodeProcessor.inc b/plugins/FeedsFeedNodeProcessor.inc index 3f252e6b..09a9f0cc 100644 --- a/plugins/FeedsFeedNodeProcessor.inc +++ b/plugins/FeedsFeedNodeProcessor.inc @@ -174,20 +174,23 @@ class FeedsFeedNodeProcessor extends FeedsProcessor { public function getMappingTargets() { $targets = array( 'title' => array( - 'name' => t('Title'), // @todo: write out. + 'name' => t('Title'), + 'description' => t('The title of the feed node.'), ), 'status' => array( 'name' => t('Published status'), + 'description' => t('Whether a feed node is published or not. 1 stands for published, 0 for not published.'), ), 'created' => array( 'name' => t('Published date'), + 'description' => t('The UNIX time when a node has been published.'), ), 'body' => array( 'name' => t('Body'), + 'description' => t('The body of the node. The teaser will be the same as the entire body.'), ), 'source' => array( 'name' => t('Feed source'), - // @todo: support and show descriptions. 'description' => t('Depending on the selected fetcher, this could be for example a URL or a path to a file.'), 'optional_unique' => TRUE, ), -- GitLab