2013-02-09 15:53:54 +04:00
|
|
|
<?php
|
|
|
|
/**
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Björn Schießle <schiessle@owncloud.com>
|
|
|
|
* @author Jörn Friedrich Dreyer <jfd@butonic.de>
|
|
|
|
* @author Lukas Reschke <lukas@owncloud.com>
|
|
|
|
* @author Morris Jobke <hey@morrisjobke.de>
|
2015-10-26 15:54:55 +03:00
|
|
|
* @author Roeland Jago Douma <rullzer@owncloud.com>
|
2015-03-26 13:44:34 +03:00
|
|
|
* @author Thomas Müller <thomas.mueller@tmit.eu>
|
|
|
|
* @author Tom Needham <tom@owncloud.com>
|
|
|
|
*
|
2016-01-12 17:02:16 +03:00
|
|
|
* @copyright Copyright (c) 2016, ownCloud, Inc.
|
2015-03-26 13:44:34 +03:00
|
|
|
* @license AGPL-3.0
|
|
|
|
*
|
|
|
|
* This code is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Affero General Public License, version 3,
|
|
|
|
* as published by the Free Software Foundation.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Affero General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Affero General Public License, version 3,
|
|
|
|
* along with this program. If not, see <http://www.gnu.org/licenses/>
|
|
|
|
*
|
2013-02-09 15:53:54 +04:00
|
|
|
*/
|
2015-02-26 13:37:37 +03:00
|
|
|
|
2015-03-21 22:12:55 +03:00
|
|
|
namespace OCA\Files_Versions\AppInfo;
|
|
|
|
|
|
|
|
$application = new Application();
|
|
|
|
|
2015-02-26 13:37:37 +03:00
|
|
|
/** @var $this \OCP\Route\IRouter */
|
2014-04-29 19:07:10 +04:00
|
|
|
$this->create('core_ajax_versions_preview', '/preview')->action(
|
2013-10-02 17:23:51 +04:00
|
|
|
function() {
|
|
|
|
require_once __DIR__ . '/../ajax/preview.php';
|
2013-10-02 18:34:05 +04:00
|
|
|
});
|
2014-06-27 21:22:10 +04:00
|
|
|
|
2014-12-02 19:52:31 +03:00
|
|
|
$this->create('files_versions_download', 'download.php')
|
|
|
|
->actionInclude('files_versions/download.php');
|
2014-08-19 17:25:16 +04:00
|
|
|
$this->create('files_versions_ajax_getVersions', 'ajax/getVersions.php')
|
|
|
|
->actionInclude('files_versions/ajax/getVersions.php');
|
|
|
|
$this->create('files_versions_ajax_rollbackVersion', 'ajax/rollbackVersion.php')
|
|
|
|
->actionInclude('files_versions/ajax/rollbackVersion.php');
|
|
|
|
|