2012-02-06 10:32:57 +04:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2011 Thomas Tanghus <thomas@tanghus.net>
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
* See the COPYING-README file.
|
|
|
|
*/
|
|
|
|
|
2012-04-17 21:31:29 +04:00
|
|
|
|
2012-05-03 14:23:29 +04:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
2012-02-06 10:32:57 +04:00
|
|
|
|
|
|
|
$id = $_GET['id'];
|
|
|
|
$checksum = isset($_GET['checksum'])?$_GET['checksum']:'';
|
|
|
|
$vcard = OC_Contacts_App::getContactVCard($id);
|
|
|
|
$adr_types = OC_Contacts_App::getTypesOfProperty('ADR');
|
|
|
|
|
2012-05-07 01:00:36 +04:00
|
|
|
$tmpl = new OCP\Template("contacts", "part.edit_address_dialog");
|
2012-02-06 10:32:57 +04:00
|
|
|
if($checksum) {
|
|
|
|
$line = OC_Contacts_App::getPropertyLineByChecksum($vcard, $checksum);
|
|
|
|
$element = $vcard->children[$line];
|
|
|
|
$adr = OC_Contacts_VCard::structureProperty($element);
|
|
|
|
$tmpl->assign('adr',$adr);
|
|
|
|
}
|
|
|
|
|
|
|
|
$tmpl->assign('id',$id);
|
|
|
|
$tmpl->assign('adr_types',$adr_types);
|
|
|
|
|
|
|
|
$tmpl->printpage();
|
|
|
|
|
|
|
|
?>
|