richdocuments/ajax/documents.php

11 lines
200 B
PHP
Raw Normal View History

2013-08-23 21:09:00 +02:00
<?php
// Init owncloud
\OCP\User::checkLoggedIn();
2013-08-28 12:02:27 +02:00
\OCP\JSON::checkAppEnabled('documents');
2013-08-23 21:09:00 +02:00
2013-08-28 12:02:27 +02:00
$documents=\OCA\Documents\Storage::getDocuments();
2013-08-23 21:09:00 +02:00
OCP\JSON::success(array('documents' => $documents));