You are here

function simple_ldap_user_translate_file_drupal_to_ldap in Simple LDAP 7.2

1 string reference to 'simple_ldap_user_translate_file_drupal_to_ldap'
simple_ldap_user_simple_ldap_data_handlers in simple_ldap_user/simple_ldap_user.module
Implements HOOK_simple_ldap_data_handlers()

File

simple_ldap_user/simple_ldap_user.ldap_handlers.inc, line 114

Code

function simple_ldap_user_translate_file_drupal_to_ldap(&$value, $field_info, $items) {
  if (is_array($items)) {
    foreach ($items as $item) {
      foreach ($items as $item) {
        $file = file_load($item['fid']);
        $value[] = file_get_contents($file->uri);
      }
    }
  }
}