2012-06-25 16:21:29 +02: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-09-07 14:32:45 +02:00
|
|
|
|
2012-06-25 16:21:29 +02:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
|
|
|
|
|
|
|
$books = OC_Contacts_Addressbook::all(OCP\USER::getUser());
|
|
|
|
if(count($books) > 1) {
|
|
|
|
$tmpl = new OCP\Template("contacts", "part.selectaddressbook");
|
2012-09-05 16:44:26 +02:00
|
|
|
$tmpl->assign('addressbooks', $books);
|
2012-06-25 16:21:29 +02:00
|
|
|
$page = $tmpl->fetchPage();
|
|
|
|
OCP\JSON::success(array('data' => array( 'type' => 'dialog', 'page' => $page )));
|
|
|
|
} else {
|
|
|
|
OCP\JSON::success(array('data' => array( 'type' => 'result', 'id' => $books[0]['id'] )));
|
|
|
|
}
|