diff options
-rw-r--r-- | libkolabxml/lib/kolabformat.i | 1 | ||||
-rwxr-xr-x | libkolabxml/lib/php/test.php | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/libkolabxml/lib/kolabformat.i b/libkolabxml/lib/kolabformat.i index 30726f3..12db5b1 100644 --- a/libkolabxml/lib/kolabformat.i +++ b/libkolabxml/lib/kolabformat.i @@ -28,6 +28,7 @@ namespace std { %template(vectorattachment) vector<Kolab::Attachment>; %template(vectorattendee) vector<Kolab::Attendee>; %template(vectorcontactref) vector<Kolab::ContactReference>; + %template(vectorgeo) vector<Kolab::Geo>; %template(vectorrelated) vector<Kolab::Related>; %template(vectortelephone) vector<Kolab::Telephone>; %template(vectordatetime) vector<Kolab::cDateTime>; diff --git a/libkolabxml/lib/php/test.php b/libkolabxml/lib/php/test.php index 48c3304..75f7d9f 100755 --- a/libkolabxml/lib/php/test.php +++ b/libkolabxml/lib/php/test.php @@ -102,7 +102,9 @@ $c->setTitles(array2vector("MyProfession")); $pic = "R0lGODlhEgASAIAAAMDAwAAAACH5BAEAAAAALAAAAAASABIAQAIPhI+py+0Po5y02ouz3pwXADs="; $c->setPhoto(base64_decode($pic), 'image/gif'); -$c->setGPSpos(array2vector("geo:46.952585,7.43766")); +$geo = new vectorgeo; +$geo->push(new Geo(46.952585, 7.43766)); +$c->setGPSpos($geo); $bd = new cDateTime(1980,8,1); $c->setBDay($bd); |