2013-08-18 12:54:57 +03:00
|
|
|
<?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;
|
|
|
|
|
2013-08-19 14:18:48 +03:00
|
|
|
\OCP\Util::addScript('office', 'settings');
|
|
|
|
|
2013-08-18 12:54:57 +03:00
|
|
|
$tmpl = new \OCP\Template('office', 'settings');
|
2013-08-19 14:18:48 +03:00
|
|
|
$unstable = \OCP\Config::getAppValue('office', 'unstable', 'false');
|
|
|
|
$tmpl->assign('unstable', $unstable);
|
|
|
|
|
|
|
|
return $tmpl->fetchPage();
|