21 lines
550 B
PHP
21 lines
550 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.
|
|
*/
|
|
|
|
|
|
OC_JSON::checkLoggedIn();
|
|
OC_JSON::checkAppEnabled('contacts');
|
|
|
|
$ids = OC_Contacts_Addressbook::activeIds(OC_User::getUser());
|
|
$contacts = OC_Contacts_VCard::all($ids);
|
|
$tmpl = new OC_TEMPLATE("contacts", "part.contacts");
|
|
$tmpl->assign('contacts', $contacts);
|
|
$page = $tmpl->fetchPage();
|
|
|
|
OC_JSON::success(array('data' => array( 'page' => $page )));
|
|
?>
|