2012-03-09 13:56:20 +01: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-09-07 14:32:45 +02:00
|
|
|
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::checkLoggedIn();
|
|
|
|
OCP\JSON::checkAppEnabled('contacts');
|
2012-07-17 12:04:34 +02:00
|
|
|
OCP\JSON::callCheck();
|
2012-03-09 13:56:20 +01:00
|
|
|
|
2012-10-25 03:34:12 +02:00
|
|
|
OCA\Contacts\App::scanCategories();
|
|
|
|
$categories = OCA\Contacts\App::getCategories();
|
2012-03-09 13:56:20 +01:00
|
|
|
|
2012-05-03 12:23:29 +02:00
|
|
|
OCP\JSON::success(array('data' => array('categories'=>$categories)));
|