36 lines
831 B
PHP
36 lines
831 B
PHP
|
<?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.
|
||
|
*/
|
||
|
|
||
|
require_once('../../../lib/base.php');
|
||
|
OC_JSON::checkLoggedIn();
|
||
|
OC_JSON::checkAppEnabled('contacts');
|
||
|
|
||
|
$tmpl = new OC_TEMPLATE("contacts", "part.edit_name_dialog");
|
||
|
|
||
|
$id = $_GET['id'];
|
||
|
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 {
|
||
|
$addressbooks = OC_Contacts_Addressbook::active(OC_User::getUser());
|
||
|
$tmpl->assign('addressbooks', $addressbooks);
|
||
|
}
|
||
|
$tmpl->printpage();
|
||
|
|
||
|
?>
|