2013-08-18 12:54:57 +03:00
|
|
|
<?php
|
|
|
|
|
|
|
|
/**
|
2013-08-28 12:02:27 +02:00
|
|
|
* ownCloud - Documents App
|
2013-08-18 12:54:57 +03:00
|
|
|
*
|
|
|
|
* @author Victor Dubiniuk
|
|
|
|
* @copyright 2013 Victor Dubiniuk victor.dubiniuk@gmail.com
|
|
|
|
*
|
|
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
|
|
* later.
|
|
|
|
*/
|
|
|
|
|
2013-08-28 12:02:27 +02:00
|
|
|
namespace OCA\Documents;
|
2013-08-18 12:54:57 +03:00
|
|
|
|
2015-08-26 20:16:53 +03:00
|
|
|
use \OCA\Documents\AppInfo\Application;
|
2013-08-19 14:18:48 +03:00
|
|
|
|
2015-08-26 20:16:53 +03:00
|
|
|
$app = new Application();
|
|
|
|
$response = $app->getContainer()->query('\OCA\Documents\Controller\SettingsController')->settingsIndex();
|
|
|
|
return $response->render();
|