nextcloud/apps/files_versions/ajax/getVersions.php

26 lines
584 B
PHP
Raw Normal View History

<?php
2012-05-03 14:23:29 +04:00
OCP\JSON::checkAppEnabled('files_versions');
$source = $_GET['source'];
list ($uid, $filename) = OCA\Files_Versions\Storage::getUidAndFilename($source);
$count = 5; //show the newest revisions
if( ($versions = OCA\Files_Versions\Storage::getVersions($uid, $filename, $count)) ) {
$versionsFormatted = array();
2012-08-29 10:42:49 +04:00
foreach ( $versions AS $version ) {
2012-06-28 13:46:17 +04:00
$versionsFormatted[] = OCP\Util::formatDate( $version['version'] );
}
$versionsSorted = array_reverse( $versions );
2012-08-29 10:42:49 +04:00
if ( !empty( $versionsSorted ) ) {
2012-05-03 14:23:29 +04:00
OCP\JSON::encodedPrint($versionsSorted);
}
2012-08-29 10:42:49 +04:00
} else {
return;
2012-08-29 10:42:49 +04:00
}