You are here

function auth0_mappingsToPipeList in Auth0 Single Sign On 7.2

File

./auth0.module, line 512

Code

function auth0_mappingsToPipeList($mappings) {
  $result_text = "";
  foreach ($mappings as $map) {
    $result_text .= $map['from'] . '|' . $map['user_entered'] . "\n";
  }
  return $result_text;
}