From e09f22df764a51f60731b7bd1e2ac9b48a595036 Mon Sep 17 00:00:00 2001 From: Alex Barth <alex_b@53995.no-reply.drupal.org> Date: Mon, 2 Nov 2009 20:26:57 +0000 Subject: [PATCH] Add descriptions to user processor. --- plugins/FeedsUserProcessor.inc | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/plugins/FeedsUserProcessor.inc b/plugins/FeedsUserProcessor.inc index 047ba7c4..d3b33abd 100644 --- a/plugins/FeedsUserProcessor.inc +++ b/plugins/FeedsUserProcessor.inc @@ -153,14 +153,17 @@ class FeedsUserProcessor extends FeedsProcessor { $targets = array( 'name' => array( 'name' => t('User name'), + 'description' => t('Name of the user.'), 'optional_unique' => TRUE, ), 'mail' => array( - 'name' => t('E-mail address'), + 'name' => t('Email address'), + 'description' => t('Email address of the user.'), 'optional_unique' => TRUE, ), 'created' => array( 'name' => t('Created date'), + 'description' => t('The created (e. g. joined) data of the user.'), ), ); return $targets; -- GitLab