Subversion Repositories cheapmusic

Rev

Rev 68 | Rev 71 | 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
 
70 - 12
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
13
 
65 - 14
$buttonArr = array(
15
    'All',
16
    'New',
17
    'Used',
18
    'CD',
19
    'Record',
20
    'Digital',
21
    'Book'
22
);
70 - 23
 
65 - 24
$formatArr = array(
25
    'Any',
26
    'CD',
27
    'Record',
28
    'Digital',
29
    'Book'
30
);
66 - 31
 
32
$mediaTypeTextArr = array(
33
"CD" => "Compact Disc",
34
"Record" => "Vinyl Record",
35
"Digital" => "Digital Download",
36
"Book" => "Books / Sheet Music"
37
);
70 - 38
 
66 - 39
$mediaTypeIconArr = array(
68 - 40
"CD" => "fas fa-compact-disc media-icon-silver",
41
"Record" => "fas fa-dot-circle media-icon-black",
42
"Digital" => "fas fa-download media-icon-black",
43
"Book" => "fas fa-book-open media-icon-black"
66 - 44
);