Subversion Repositories cheapmusic

Rev

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

Rev Author Line No. Line
1 - 1
<?php
2
// Search Types
3
define("NEW", 0);
4
define("USED", 1);
5
define("DIGITAL", 2);
20 - 6
define("BOOK", 3);
1 - 7
 
8
define("MAXPULLRESULTS", 50);
9
define("MAXSHOWRESULTS", 25);
65 - 10
define("MAXTITLELENGTH", 80);
59 - 11
 
65 - 12
$buttonArr = array(
13
    'All',
14
    'New',
15
    'Used',
16
    'CD',
17
    'Record',
18
    'Digital',
19
    'Book'
20
);
21
$formatArr = array(
22
    'Any',
23
    'CD',
24
    'Record',
25
    'Digital',
26
    'Book'
27
);
66 - 28
 
29
$mediaTypeTextArr = array(
30
"CD" => "Compact Disc",
31
"Record" => "Vinyl Record",
32
"Digital" => "Digital Download",
33
"Book" => "Books / Sheet Music"
34
);
35
$mediaTypeIconArr = array(
36
"CD" => "fas fa-compact-disc category-icon-silver",
37
"Record" => "fas fa-dot-circle",
38
"Digital" => "fas fa-download",
39
"Book" => "fas fa-book-open"
40
);