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>
< span class = " securitywarning " > 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 >
</ fieldset >
< ? php
}
?>
2011-08-23 03:40:13 +04:00
< ? php foreach ( $_ [ 'forms' ] as $form ){
echo $form ;
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 >
< input id = 'moreLog' type = 'button' value = '<?php echo $l->t(' More ');?>...' ></ input >
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 />
Developed by the < a href = " http://ownCloud.org/contact " target = " _blank " > ownCloud community </ a > , the < a href = " http://gitorious.org/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 >.
</ p >