You are here

protected function FeedsUserProcessor::passFormCallbackOptions in Feeds 7.2

Returns the list of available password encryption methods.

Used by ::passFormCallback().

Return value

array An array of password encryption option titles.

See also

passFormCallback()

1 call to FeedsUserProcessor::passFormCallbackOptions()
FeedsUserProcessor::passFormCallback in plugins/FeedsUserProcessor.inc
Mapping configuration form callback for target "pass".

File

plugins/FeedsUserProcessor.inc, line 681
Contains FeedsUserProcessor.

Class

FeedsUserProcessor
Feeds processor plugin. Create users from feed items.

Code

protected function passFormCallbackOptions() {
  return array(
    self::PASS_UNENCRYPTED => t('Unencrypted'),
    self::PASS_MD5 => t('MD5 (used in older versions of Drupal)'),
    self::PASS_SHA512 => t('SHA512 (default in Drupal 7)'),
  );
}