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 .
2011-10-16 23:08:44 +04:00
*/
$levels = array ( 'Debug' , 'Info' , 'Warning' , 'Error' , 'Fatal' );
?>
2011-08-23 03:40:13 +04:00
2012-06-21 16:07:04 +04:00
< ? php
if ( ! $_ [ 'htaccessworking' ]) {
?>
< fieldset class = " personalblock " >
< legend >< strong >< ? php echo $l -> t ( 'Security Warning' ); ?> </strong></legend>
2012-09-01 15:23:37 +04:00
< span class = " securitywarning " >
< ? php echo $l -> t ( 'Your data directory and your files are probably accessible from the internet. The .htaccess file that ownCloud provides is not working. We strongly suggest that you configure your webserver in a way that the data directory is no longer accessible or you move the data directory outside the webserver document root.' ); ?>
</ span >
2012-06-21 16:07:04 +04:00
</ fieldset >
< ? php
}
?>
2012-09-07 17:22:01 +04:00
< ? php foreach ( $_ [ 'forms' ] as $form ) {
2011-08-23 03:40:13 +04:00
echo $form ;
2011-10-16 23:08:44 +04:00
}; ?>
2012-08-09 12:41:10 +04:00
< fieldset class = " personalblock " id = " backgroundjobs " >
< legend >< strong >< ? php echo $l -> t ( 'Cron' ); ?> </strong></legend>
2012-09-16 20:40:08 +04:00
< table class = " nostyle " >
< tr >
< td >
< input type = " radio " name = " mode " value = " ajax " id = " backgroundjobs_ajax " < ? php if ( $_ [ 'backgroundjobs_mode' ] == " ajax " ) { echo 'checked="checked"' ; } ?> >
< label for = " backgroundjobs_ajax " > AJAX </ label >< br />
< em >< ? php echo $l -> t ( " Execute one task with each page loaded " ); ?> </em>
</ td >
</ tr >< tr >
< td >
< input type = " radio " name = " mode " value = " webcron " id = " backgroundjobs_webcron " < ? php if ( $_ [ 'backgroundjobs_mode' ] == " webcron " ) { echo 'checked="checked"' ; } ?> >
< label for = " backgroundjobs_webcron " > Webcron </ label >< br />
< em >< ? php echo $l -> t ( " cron.php is registered at a webcron service. Call the cron.php page in the owncloud root once a minute over http. " ); ?> </em>
</ td >
</ tr >< tr >
< td >
< input type = " radio " name = " mode " value = " cron " id = " backgroundjobs_cron " < ? php if ( $_ [ 'backgroundjobs_mode' ] == " cron " ) { echo 'checked="checked"' ; } ?> >
< label for = " backgroundjobs_cron " > Cron </ label >< br />
< em >< ? php echo $l -> t ( " Use systems cron service. Call the cron.php file in the owncloud folder via a system cronjob once a minute. " ); ?> </em>
</ td >
</ tr >
</ table >
2012-08-09 12:41:10 +04:00
</ fieldset >
2012-08-28 04:36:34 +04:00
< fieldset class = " personalblock " id = " shareAPI " >
2012-09-16 19:23:21 +04:00
< legend >< strong >< ? php echo $l -> t ( 'Sharing' ); ?> </strong></legend>
2012-08-28 04:36:34 +04:00
< table class = " shareAPI nostyle " >
< tr >
< td id = " enable " >
< input type = " checkbox " name = " shareapi_enabled " id = " shareAPIEnabled " value = " 1 " < ? php if ( $_ [ 'shareAPIEnabled' ] == 'yes' ) echo 'checked="checked"' ; ?> />
< label for = " shareAPIEnabled " >< ? php echo $l -> t ( 'Enable Share API' ); ?> </label><br />
< em >< ? php echo $l -> t ( 'Allow apps to use the Share API' ); ?> </em>
</ td >
2012-09-16 19:23:21 +04:00
</ tr >< tr >
2012-08-28 04:36:34 +04:00
< td < ? php if ( $_ [ 'shareAPIEnabled' ] == 'no' ) echo 'style="display:none"' ; ?> >
< input type = " checkbox " name = " shareapi_allow_links " id = " allowLinks " value = " 1 " < ? php if ( $_ [ 'allowLinks' ] == 'yes' ) echo 'checked="checked"' ; ?> />
< label for = " allowLinks " >< ? php echo $l -> t ( 'Allow links' ); ?> </label><br />
< em >< ? php echo $l -> t ( 'Allow users to share items to the public with links' ); ?> </em>
</ td >
2012-09-16 19:23:21 +04:00
</ tr >< tr >
2012-08-28 04:36:34 +04:00
< td < ? php if ( $_ [ 'shareAPIEnabled' ] == 'no' ) echo 'style="display:none"' ; ?> >
< input type = " checkbox " name = " shareapi_allow_resharing " id = " allowResharing " value = " 1 " < ? php if ( $_ [ 'allowResharing' ] == 'yes' ) echo 'checked="checked"' ; ?> />
< label for = " allowResharing " >< ? php echo $l -> t ( 'Allow resharing' ); ?> </label><br />
< em >< ? php echo $l -> t ( 'Allow users to share items shared with them again' ); ?> </em>
2012-09-16 19:23:21 +04:00
</ td >
</ tr >< tr >
2012-08-28 04:36:34 +04:00
< td < ? php if ( $_ [ 'shareAPIEnabled' ] == 'no' ) echo 'style="display:none"' ; ?> >
< input type = " radio " name = " shareapi_share_policy " id = " sharePolicyGlobal " value = " global " < ? php if ( $_ [ 'sharePolicy' ] == 'global' ) echo 'checked="checked"' ; ?> />
< label for = " sharePolicyGlobal " >< ? php echo $l -> t ( 'Allow users to share with anyone' ); ?> </label><br />
< input type = " radio " name = " shareapi_share_policy " id = " sharePolicyGroupsOnly " value = " groups_only " < ? php if ( $_ [ 'sharePolicy' ] == 'groups_only' ) echo 'checked="checked"' ; ?> />
< label for = " sharePolicyGroupsOnly " >< ? php echo $l -> t ( 'Allow users to only share with users in their groups' ); ?> </label><br />
</ td >
</ tr >
</ table >
</ fieldset >
2011-10-16 23:08:44 +04:00
< fieldset class = " personalblock " >
2012-04-16 14:21:12 +04:00
< legend >< strong >< ? php echo $l -> t ( 'Log' ); ?> </strong></legend>
Log level : < select name = 'loglevel' id = 'loglevel' >
2011-10-16 23:08:44 +04:00
< option value = '<?php echo $_[' loglevel ']?>' >< ? php echo $levels [ $_ [ 'loglevel' ]] ?> </option>
< ? php for ( $i = 0 ; $i < 5 ; $i ++ ) :
if ( $i != $_ [ 'loglevel' ]) : ?>
< option value = '<?php echo $i?>' >< ? php echo $levels [ $i ] ?> </option>
< ? php endif ;
endfor ; ?>
</ select >
2012-04-16 14:21:12 +04:00
< table id = 'log' >
< ? php foreach ( $_ [ 'entries' ] as $entry ) : ?>
< tr >
< td >
< ? php echo $levels [ $entry -> level ]; ?>
</ td >
< td >
< ? php echo $entry -> app ; ?>
</ td >
< td >
2012-06-11 21:07:51 +04:00
< ? php echo $entry -> message ; ?>
2012-04-16 14:21:12 +04:00
</ td >
< td >
< ? php echo OC_Util :: formatDate ( $entry -> time ); ?>
</ td >
</ tr >
< ? php endforeach ; ?>
</ table >
2012-08-04 19:38:31 +04:00
< ? php if ( $_ [ 'entriesremain' ]) : ?>
2012-04-16 14:21:12 +04:00
< input id = 'moreLog' type = 'button' value = '<?php echo $l->t(' More ');?>...' ></ input >
2012-08-04 19:38:31 +04:00
< ? php endif ; ?>
2011-10-16 23:08:44 +04:00
</ fieldset >
2012-06-29 13:07:41 +04:00
< p class = " personalblock " >
< strong > ownCloud </ strong > < ? php echo ( OC_Util :: getVersionString ()); ?> <?php echo(OC_Util::getEditionString()); ?> (<?php echo(OC_Updater::ShowUpdatingHint()); ?>)<br />
2012-09-01 18:38:23 +04:00
< ? php echo $l -> t ( 'Developed by the <a href="http://ownCloud.org/contact" target="_blank">ownCloud community</a>, the <a href="https://github.com/owncloud" target="_blank">source code</a> is licensed under the <a href="http://www.gnu.org/licenses/agpl-3.0.html" target="_blank"><abbr title="Affero General Public License">AGPL</abbr></a>.' ); ?>
2012-06-29 13:07:41 +04:00
</ p >