Subversion Repositories cheapmusic

Rev

Rev 59 | Rev 66 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 - 1
<?php
2
// Media Types
3
//define("CD", 0);
4
//define("RECORD", 1);
5
//define("DIGITAL", 2);
20 - 6
//define("BOOK", 3);
1 - 7
// Search Types
8
define("NEW", 0);
9
define("USED", 1);
10
define("DIGITAL", 2);
20 - 11
define("BOOK", 3);
1 - 12
 
13
define("MAXPULLRESULTS", 50);
14
define("MAXSHOWRESULTS", 25);
15
 
65 - 16
define("MAXTITLELENGTH", 80);
59 - 17
 
65 - 18
$buttonArr = array(
19
    'All',
20
    'New',
21
    'Used',
22
    'CD',
23
    'Record',
24
    'Digital',
25
    'Book'
26
);
27
$formatArr = array(
28
    'Any',
29
    'CD',
30
    'Record',
31
    'Digital',
32
    'Book'
33
);