richdocuments/settings.php
2013-08-27 20:26:33 +02:00

22 lines
475 B
PHP

<?php
/**
* ownCloud - Office App
*
* @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.
*/
namespace OCA\Office;
\OCP\Util::addScript('office', 'settings');
$tmpl = new \OCP\Template('office', 'settings');
$unstable = \OCP\Config::getAppValue('office', 'unstable', 'false');
$tmpl->assign('unstable', $unstable);
return $tmpl->fetchPage();