2011-08-23 03:40:13 +04:00
|
|
|
<?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.
|
|
|
|
*/
|
|
|
|
|
2012-09-06 01:28:59 +04:00
|
|
|
require_once '../lib/base.php';
|
2011-09-18 23:31:56 +04:00
|
|
|
OC_Util::checkAdminUser();
|
2011-08-23 03:40:13 +04:00
|
|
|
|
|
|
|
OC_Util::addStyle( "settings", "settings" );
|
2011-10-16 23:08:44 +04:00
|
|
|
OC_Util::addScript( "settings", "admin" );
|
2012-04-16 14:21:12 +04:00
|
|
|
OC_Util::addScript( "settings", "log" );
|
2011-08-23 03:40:13 +04:00
|
|
|
OC_App::setActiveNavigationEntry( "admin" );
|
|
|
|
|
|
|
|
$tmpl = new OC_Template( 'settings', 'admin', 'user');
|
|
|
|
$forms=OC_App::getForms('admin');
|
2012-06-21 16:07:04 +04:00
|
|
|
$htaccessworking=OC_Util::ishtaccessworking();
|
2012-04-16 14:21:12 +04:00
|
|
|
|
|
|
|
$entries=OC_Log_Owncloud::getEntries(3);
|
2012-08-04 19:38:31 +04:00
|
|
|
$entriesremain=(count(OC_Log_Owncloud::getEntries(4)) > 3)?true:false;
|
|
|
|
|
2012-09-07 17:22:01 +04:00
|
|
|
function compareEntries($a,$b) {
|
2012-04-16 14:21:12 +04:00
|
|
|
return $b->time - $a->time;
|
|
|
|
}
|
|
|
|
usort($entries, 'compareEntries');
|
|
|
|
|
2012-06-11 21:33:16 +04:00
|
|
|
$tmpl->assign('loglevel',OC_Config::getValue( "loglevel", 2 ));
|
2012-06-19 19:24:55 +04:00
|
|
|
$tmpl->assign('entries',$entries);
|
2012-08-04 19:38:31 +04:00
|
|
|
$tmpl->assign('entriesremain', $entriesremain);
|
2012-06-21 16:07:04 +04:00
|
|
|
$tmpl->assign('htaccessworking',$htaccessworking);
|
2012-08-10 03:36:33 +04:00
|
|
|
$tmpl->assign('backgroundjobs_mode', OC_Appconfig::getValue('core', 'backgroundjobs_mode', 'ajax'));
|
2012-08-28 04:36:34 +04:00
|
|
|
$tmpl->assign('shareAPIEnabled', OC_Appconfig::getValue('core', 'shareapi_enabled', 'yes'));
|
|
|
|
$tmpl->assign('allowLinks', OC_Appconfig::getValue('core', 'shareapi_allow_links', 'yes'));
|
|
|
|
$tmpl->assign('allowResharing', OC_Appconfig::getValue('core', 'shareapi_allow_resharing', 'yes'));
|
|
|
|
$tmpl->assign('sharePolicy', OC_Appconfig::getValue('core', 'shareapi_share_policy', 'global'));
|
2012-06-11 15:27:32 +04:00
|
|
|
$tmpl->assign('forms',array());
|
2012-09-07 17:22:01 +04:00
|
|
|
foreach($forms as $form) {
|
2011-08-23 03:40:13 +04:00
|
|
|
$tmpl->append('forms',$form);
|
|
|
|
}
|
2011-09-18 23:31:56 +04:00
|
|
|
$tmpl->printPage();
|