You are here

public function FeedsUserProcessor::passSummaryCallback in Feeds 7.2

Mapping configuration summary callback for target "pass".

File

plugins/FeedsUserProcessor.inc, line 631
Contains FeedsUserProcessor.

Class

FeedsUserProcessor
Feeds processor plugin. Create users from feed items.

Code

public function passSummaryCallback($mapping, $target, $form, $form_state) {
  $options = $this
    ->passSummaryCallbackOptions();
  if (!isset($mapping['pass_encryption'])) {
    $mapping['pass_encryption'] = self::PASS_UNENCRYPTED;
  }
  return t('Password encryption: <strong>@encryption</strong>', array(
    '@encryption' => $options[$mapping['pass_encryption']],
  ));
}