server/settings/admin.php

52 lines
2.1 KiB
PHP
Raw Normal View History

<?php
/**
* Copyright (c) 2011, Robin Appelman <icewind1991@gmail.com>
* This file is licensed under the Affero General Public License version 3 or later.
* See the COPYING-README file.
*/
OC_Util::checkAdminUser();
OC_App::loadApps();
OC_Util::addStyle( "settings", "settings" );
2011-10-16 19:08:44 +00:00
OC_Util::addScript( "settings", "admin" );
2012-04-16 10:21:12 +00:00
OC_Util::addScript( "settings", "log" );
OC_App::setActiveNavigationEntry( "admin" );
$tmpl = new OC_Template( 'settings', 'admin', 'user');
$forms=OC_App::getForms('admin');
$htaccessworking=OC_Util::ishtaccessworking();
2012-04-16 10:21:12 +00:00
$entries=OC_Log_Owncloud::getEntries(3);
$entriesremain=(count(OC_Log_Owncloud::getEntries(4)) > 3)?true:false;
2012-11-04 10:10:46 +00:00
$tmpl->assign('loglevel', OC_Config::getValue( "loglevel", 2 ));
2012-11-02 18:53:02 +00:00
$tmpl->assign('entries', $entries);
$tmpl->assign('entriesremain', $entriesremain);
2012-11-02 18:53:02 +00:00
$tmpl->assign('htaccessworking', $htaccessworking);
2013-05-31 21:24:09 +00:00
$tmpl->assign('internetconnectionworking', OC_Util::isInternetConnectionEnabled() ? OC_Util::isInternetConnectionWorking() : false);
$tmpl->assign('islocaleworking', OC_Util::issetlocaleworking());
$tmpl->assign('isWebDavWorking', OC_Util::isWebDAVWorking());
$tmpl->assign('has_fileinfo', OC_Util::fileInfoLoaded());
2012-08-09 23:36:33 +00:00
$tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax'));
2012-08-28 00:36:34 +00:00
$tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes'));
// Check if connected using HTTPS
2013-04-17 13:32:03 +00:00
if (OC_Request::serverProtocol() === 'https') {
$connectedHTTPS = true;
} else {
$connectedHTTPS = false;
}
$tmpl->assign('isConnectedViaHTTPS', $connectedHTTPS);
$tmpl->assign('enforceHTTPSEnabled', OC_Config::getValue( "forcessl", false));
2012-08-28 00:36:34 +00:00
$tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes'));
$tmpl->assign('allowPublicUpload', OC_Appconfig::getValue('core', 'shareapi_allow_public_upload', 'yes'));
2012-08-28 00:36:34 +00:00
$tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes'));
$tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'));
2012-11-02 18:53:02 +00:00
$tmpl->assign('forms', array());
2012-09-07 13:22:01 +00:00
foreach($forms as $form) {
2012-11-02 18:53:02 +00:00
$tmpl->append('forms', $form);
}
$tmpl->printPage();