2012-04-26 13:32:29 +00:00
|
|
|
<div id="history">
|
2012-04-27 12:19:16 +00:00
|
|
|
|
2012-04-23 21:54:49 +00:00
|
|
|
<?php
|
2012-04-27 12:19:16 +00:00
|
|
|
|
|
|
|
if( isset( $_['message'] ) ) {
|
2012-04-23 21:54:49 +00:00
|
|
|
|
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
if( isset($_['path'] ) ) echo('<strong>File: '.$_['path'] ).'</strong><br>';
|
|
|
|
echo('<strong>'.$_['message'] ).'</strong><br>';
|
2012-04-23 21:54:49 +00:00
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
}else{
|
2012-04-23 21:54:49 +00:00
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
if( isset( $_['outcome_stat'] ) ) {
|
2012-08-29 06:42:49 +00:00
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
echo( '<div id="feedback-messages" class="'.$_['outcome_stat'].'"><h3>'.$_['outcome_msg'] ).'</h3></div><br>';
|
2012-04-23 21:54:49 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
echo( '<strong>Versions of '.$_['path'] ).'</strong><br>';
|
2012-05-11 12:17:37 +00:00
|
|
|
echo('<p><em>Revert a file to a previous version by clicking on its revert button</em></p><br />');
|
2012-08-29 06:42:49 +00:00
|
|
|
|
2012-04-27 12:19:16 +00:00
|
|
|
foreach ( $_['versions'] as $v ) {
|
|
|
|
echo ' ';
|
2012-06-27 13:05:40 +00:00
|
|
|
echo OCP\Util::formatDate( doubleval($v['version']) );
|
2012-09-28 20:27:52 +00:00
|
|
|
echo ' <a href="'.OCP\Util::linkTo('files_versions', 'history.php', array('path' => $_['path'], 'revert' => $v['version'])) .'" class="button">Revert</a><br /><br />';
|
2012-12-14 22:22:46 +00:00
|
|
|
if ( $v['cur'] ) {
|
|
|
|
echo ' (<b>Current</b>)';
|
|
|
|
}
|
2012-05-16 13:56:37 +00:00
|
|
|
echo '<br /><br />';
|
2012-04-27 12:19:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2012-04-23 21:54:49 +00:00
|
|
|
?>
|
2012-04-26 13:32:29 +00:00
|
|
|
</div>
|