sintonia/livesupport/modules/storageServer/var/tests/sampleData.php

39 lines
1.2 KiB
PHP

<?
$sampleData = array(
array(
'type' => 'audioclip',
'media' => '../tests/test10001.mp3',
'xml' => '../tests/mdata10001.xml',
'gunid' => '0000000000010001'
),
array(
'type' => 'audioclip',
'media' => '../tests/test10002.mp3',
'xml' => '../tests/mdata10002.xml',
'gunid' => '0000000000010002'
),
array(
'type' => 'audioclip',
'media' => '../tests/ex1.mp3',
'xml' => '../tests/mdata1.xml',
'gunid' => '123456789abcdef1'
),
array(
'type' => 'audioclip',
'media' => '../tests/ex2.ogg',
'xml' => '../tests/mdata2.xml',
'gunid' => '123456789abcdef2'
),
array(
'type' => 'audioclip',
'media' => '../tests/ex3.wav',
'xml' => '../tests/mdata3.xml'
),
array(
'type' => 'playlist',
'xml' => '../tests/plist1.xml',
'gunid' => '0000000000000001'
)
);
?>