2012-03-09 12:56:20 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Copyright (c) 2012 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 17:31:29 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
2012-07-17 10:04:34 +00:00
|
|
|
OCP\JSON::callCheck();
|
2012-03-09 12:56:20 +00:00
|
|
|
|
2012-07-08 22:15:37 +00:00
|
|
|
OC_Contacts_App::scanCategories();
|
2012-04-12 20:31:28 +00:00
|
|
|
$categories = OC_Contacts_App::getCategories();
|
2012-03-09 12:56:20 +00:00
|
|
|
|
2012-05-03 10:23:29 +00:00
|
|
|
OCP\JSON::success(array('data' => array('categories'=>$categories)));
|