summaryrefslogblamecommitdiffstats
path: root/fakeremote/list.php
blob: 5c8d1c67ebd60313d85fec83760535bd2f0a7925 (plain) (tree)























                                                                                         
<?php

/*
echo '[';

$first = true;
foreach (glob('./*.tgz') as $file) {
	if (!$first) echo ', ';
	$first = false;
	echo ' { "file" : "' . basename($file) . '", "description" : "<Beschreibung>" }';
}
echo ' ]';
*/

$files = array();
foreach (glob('./*.tgz') as $file) {
	$files[] = array(
		'file' => basename($file),
		'description' => 'Eine sinnvolle Beschreibung'
	);
}

echo json_encode($files);