summaryrefslogtreecommitdiffstats
path: root/apps/files_versions/ajax/getVersions.php
blob: 600e69cf798054bca6f9fe63a140c0e2c0cb0eca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?php
OCP\JSON::checkAppEnabled('files_versions');

$userDirectory = "/".OCP\USER::getUser()."/files";
$source = $_GET['source'];

$count = 5; //show the newest revisions
if( ($versions = OCA_Versions\Storage::getVersions( $source, $count)) ) {

	$versionsFormatted = array();

	foreach ( $versions AS $version ) {
		$versionsFormatted[] = OCP\Util::formatDate( $version['version'] );
	}

	$versionsSorted = array_reverse( $versions );

	if ( !empty( $versionsSorted ) ) {
		OCP\JSON::encodedPrint($versionsSorted);
	}

} else {

	return;

}