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-02-06 10:32:57 +04:00
|
|
|
OC_JSON::checkLoggedIn();
|
|
|
|
OC_JSON::checkAppEnabled('contacts');
|
2012-02-06 17:18:40 +04:00
|
|
|
function bailOut($msg) {
|
|
|
|
OC_JSON::error(array('data' => array('message' => $msg)));
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/editname.php: '.$msg, OCP\Util::DEBUG);
|
2012-02-06 17:18:40 +04:00
|
|
|
exit();
|
|
|
|
}
|
|
|
|
function debug($msg) {
|
2012-05-01 19:38:27 +04:00
|
|
|
OCP\Util::writeLog('contacts','ajax/editname.php: '.$msg, OCP\Util::DEBUG);
|
2012-02-06 17:18:40 +04:00
|
|
|
}
|
2012-02-06 10:32:57 +04:00
|
|
|
|
|
|
|
$tmpl = new OC_TEMPLATE("contacts", "part.edit_name_dialog");
|
|
|
|
|
2012-02-06 10:32:57 +04:00
|
|
|
$id = isset($_GET['id'])?$_GET['id']:'';
|
2012-05-02 14:10:44 +04:00
|
|
|
debug('id: '.$id);
|
2012-02-06 10:32:57 +04:00
|
|
|
if($id) {
|
|
|
|
$vcard = OC_Contacts_App::getContactVCard($id);
|
|
|
|
$name = array('', '', '', '', '');
|
|
|
|
if($vcard->__isset('N')) {
|
|
|
|
$property = $vcard->__get('N');
|
|
|
|
if($property) {
|
|
|
|
$name = OC_Contacts_VCard::structureProperty($property);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
$tmpl->assign('name',$name);
|
|
|
|
$tmpl->assign('id',$id);
|
|
|
|
} else {
|
2012-05-02 14:10:44 +04:00
|
|
|
bailOut(OC_Contacts_App::$l10n->t('Contact ID is missing.'));
|
|
|
|
//$addressbooks = OC_Contacts_Addressbook::active(OCP\USER::getUser());
|
|
|
|
//$tmpl->assign('addressbooks', $addressbooks);
|
2012-02-06 10:32:57 +04:00
|
|
|
}
|
|
|
|
$tmpl->printpage();
|
|
|
|
|
|
|
|
?>
|