; Possible fields: ; label A text label for the field. Can include HTML tags. ; attributes Array of LDAP keys to put in the field contents ; format A string for vsprintf to format the attributes. ; Only needed if more than one attribute is provided. ; delimiter Specify the delimiter when concatenating multiple values for a field ; type One of "email", "phone", or "map". Used to format and generate links. ; section If this field belongs to a section, the name of that section ; parse A function which will be run on the LDAP results before display. ; Generated with create_function. Gets the argument "$value" ; and returns the formatted output. [name] label = "name" attributes[] = "first_name" attributes[] = "middle_name" attributes[] = "last_name" format = "%s %s %s" [lastName] label = "lastName" attributes[] = "last_name" [firstName] label = "firstName" attributes[] = "first_name" [title] label = "title" attributes[] = "title" type = "text" [email] label = "email" attributes[] = "email" type = "email" section = "contacts" [phone] label = "phone" attributes[] = "phone" type = "phone" section = "contacts" [office_building] label = "Office" attributes[] = "office_building" section = "contacts" type = "address" [department] label = "Department" attributes[] = "department" type = "text" ;section = "organizations" [position] label = "Position" attributes[] = "position" type = "text" ;section = "organizations"