Subversion Repositories cheapmusic

Rev

Rev 70 | Rev 72 | 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
 
71 - 12
// Wishlist freuencies
13
define("DAILY", 0);
14
define("WEEKLY", 1);
15
define("MONTHLY", 2);
16
$wlFreqArr = array(
17
    'Daily',
18
    'Weekly',
19
    'Monthly'
20
);
21
 
22
// FindCheapMusic Site Config file
70 - 23
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
24
 
65 - 25
$buttonArr = array(
26
    'All',
27
    'New',
28
    'Used',
29
    'CD',
30
    'Record',
31
    'Digital',
32
    'Book'
33
);
70 - 34
 
65 - 35
$formatArr = array(
36
    'Any',
37
    'CD',
38
    'Record',
39
    'Digital',
40
    'Book'
41
);
66 - 42
 
43
$mediaTypeTextArr = array(
44
"CD" => "Compact Disc",
45
"Record" => "Vinyl Record",
46
"Digital" => "Digital Download",
47
"Book" => "Books / Sheet Music"
48
);
70 - 49
 
66 - 50
$mediaTypeIconArr = array(
68 - 51
"CD" => "fas fa-compact-disc media-icon-silver",
52
"Record" => "fas fa-dot-circle media-icon-black",
53
"Digital" => "fas fa-download media-icon-black",
54
"Book" => "fas fa-book-open media-icon-black"
66 - 55
);