getConfig('ldap_options.timestamp', false, 'bool')) { return $data; } $retval=array(); foreach($data as $val) { $datetime = date_create_from_format($this -> getFormat(), $val); if ($datetime instanceof DateTime) { $retval[] = $datetime -> format('U'); } } return $retval; } /** * Return the update value of the attribute after handling it acording to its LDAP type * * @param mixed $data The attribute value * * @return array The processed attribute value */ public function getUpdateData($data) { $data = ensureIsArray($data); if ($this -> getConfig('ldap_options.timestamp', false, 'bool')) { return $data; } $timezone = timezone_open($this -> getConfig('ldap_options.timezone', 'UTC', 'string')); $retval = array(); foreach($data as $val) { $datetime = date_create("@$val"); $datetime -> setTimezone($timezone); $datetime_string = $datetime -> format($this -> getFormat()); // Replace +0000 or -0000 end by Z $datetime_string = preg_replace('/[\+\-]0000$/', 'Z', $datetime_string); $retval[] = $datetime_string; } return $retval; } /** * Return the storage date format * * @return string The storage date format **/ public function getFormat() { return $this -> getConfig('ldap_options.format', 'YmdHisO'); } }