"FullName","FirstName" => "+, "); // // Also start with a '#' symbol and a comma separated list will be // turned into a number of the same entries. class export_conv { var $currentrecord = array(); //used for buffering to allow uid lines to go first var $id; //list of all id's var $ids = array(); var $export = array( "fn" => "FN", "n_given" => "N;GIVEN", "n_family" => "N;FAMILY", "n_middle" => "N;MIDDLE", "n_prefix" => "N;PREFIX", "n_suffix" => "N;SUFFIX", "sound" => "SOUND", "bday" => "BDAY", "note" => "NOTE", "tz" => "TZ", "geo" => "GEO", "url" => "URL", "pubkey" => "PUBKEY", "org_name" => "ORG;NAME", "org_unit" => "ORG;UNIT", "title" => "TITLE", "adr_one_type" => "ADR;TYPE;WORK", "adr_two_type" => "ADR;TYPE;HOME", "tel_prefer" => "TEL;PREFER", "email_type" => "EMAIL;TYPE;WORK", "email_home_type" => "EMAIL;TYPE;HOME", "adr_one_street" => "ADR;WORK;STREET", "adr_one_locality" => "ADR;WORK;LOCALITY", "adr_one_region" => "ADR;WORK;REGION", "adr_one_postalcode" => "ADR;WORK;POSTALCODE", "adr_one_countryname" => "ADR;WORK;COUNTRYNAME", "address2" => "EXT", "label" => "LABEL", "adr_two_street" => "ADR;HOME;STREET", "adr_two_locality" => "ADR;HOME;LOCALITY", "adr_two_region" => "ADR;HOME;REGION", "adr_two_postalcode" => "ADR;HOME;POSTALCODE", "adr_two_countryname" => "ADR;HOME;COUNTRYNAME", "tel_work" => "TEL;WORK", "tel_home" => "TEL;HOME", "tel_voice" => "TEL;VOICE", "tel_fax" => "TEL;FAX", "tel_msg" => "TEL;MSG", "tel_cell" => "TEL;CELL", "tel_pager" => "TEL;PAGER", "tel_bbs" => "TEL;BBS", "tel_modem" => "TEL;MODEM", "tel_car" => "TEL;CAR", "tel_isdn" => "TEL;ISDN", "tel_video" => "TEL;VIDEO", "email" => "EMAIL;WORK", "email_home" => "EMAIL;HOME", ); // make sure to order how we ask for these var $qfields = array( "fn" => "fn", "n_given" => "n_given", "n_family" => "n_family", "n_middle" => "n_middle", "n_prefix" => "n_prefix", "n_suffix" => "n_suffix", "sound" => "sound", "bday" => "bday", "note" => "note", "tz" => "tz", "geo" => "geo", "url" => "url", "pubkey" => "pubkey", "org_name" => "org_name", "org_unit" => "org_unit", "title" => "title", "adr_one_type" => "adr_one_type", "adr_two_type" => "adr_two_type", "tel_prefer" => "tel_prefer", "email_type" => "email_type", "email_home_type" => "email_home_type", "adr_one_street" => "adr_one_street", "adr_one_locality" => "adr_one_locality", "adr_one_region" => "adr_one_region", "adr_one_postalcode" => "adr_one_postalcode", "adr_one_countryname" => "adr_one_countryname", "label" => "label", "adr_two_street" => "adr_two_street", "adr_two_locality" => "adr_two_locality", "adr_two_region" => "adr_two_region", "adr_two_postalcode" => "adr_two_postalcode", "adr_two_countryname" => "adr_two_countryname", "tel_work" => "tel_work", "tel_home" => "tel_home", "tel_voice" => "tel_voice", "tel_fax" => "tel_fax", "tel_msg" => "tel_msg", "tel_cell" => "tel_cell", "tel_pager" => "tel_pager", "tel_bbs" => "tel_bbs", "tel_modem" => "tel_modem", "tel_car" => "tel_car", "tel_isdn" => "tel_isdn", "tel_video" => "tel_video", "email" => "email", "email_home" => "email_home" ); // This will store the contacts object var $contacts = ''; // Read full list of user's contacts only to get id's for each function export_start_file($buffer) { $this->id=-1; $this->contacts = CreateObject('phpgwapi.contacts'); $tmp = $this->contacts->read(); for ($i=0;$iids[$i] = $tmp[$i]['id']; } // $ids is now an array of all id's for this user, e.g. $ids[0] = 21, etc... // $buffer is still empty return $buffer; } // Read each entry function export_start_record($buffer) { $this->id++; $top = $this->contacts->read_single_entry($this->ids[$this->id],$this->qfields); $this->currentrecord = $top[0]; return $buffer; } // Read each attribute, populate buffer // name/value are the fields from the export array above function export_new_attrib($buffer,$name,$value) { if ($this->export[$name] && ($value != "") ) { $buffer[$this->id][$this->export[$name]] = $value; //echo '
'.$this->id.' - '.$this->export[$name].': '.$buffer[$this->id][$this->export[$name]]; } return $buffer; } function export_end_record($buffer) { return $buffer; } function export_end_file($buffer) { $vcard = CreateObject("phpgwapi.vcard"); reset($this->ids); for ($i=0;$iids);$i++) { $vcards .= $vcard->out($buffer[$i]); } $buffer = $vcards; return $buffer; } } // end export class ?>