mirror of
https://github.com/Yetangitu/owncloud-apps.git
synced 2025-10-02 14:49:17 +02:00
21 lines
430 B
PHP
21 lines
430 B
PHP
<?php
|
|
|
|
/**
|
|
* ownCloud - Files_Opds App
|
|
*
|
|
* @author Frank de Lange
|
|
* @copyright 2014 Frank de Lange
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later.
|
|
*/
|
|
|
|
namespace OCA\Files_Opds;
|
|
|
|
$l = \OC::$server->getL10N('files_opds');
|
|
|
|
\OCP\JSON::checkLoggedIn();
|
|
\OCP\JSON::callCheck();
|
|
|
|
Bookshelf::clear();
|
|
\OCP\JSON::success(array( "data" => array( "message" => $l->t("Bookshelf cleared"))));
|