Subversion Repositories cheapmusic

Rev

Rev 71 | Rev 73 | 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
);
72 - 21
$wlFreqHoursArr = array(23, 167, 719); // minimum hours between emails
71 - 22
 
23
// FindCheapMusic Site Config file
70 - 24
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
25
 
65 - 26
$buttonArr = array(
27
    'All',
28
    'New',
29
    'Used',
30
    'CD',
31
    'Record',
32
    'Digital',
33
    'Book'
34
);
70 - 35
 
65 - 36
$formatArr = array(
37
    'Any',
38
    'CD',
39
    'Record',
40
    'Digital',
41
    'Book'
42
);
66 - 43
 
44
$mediaTypeTextArr = array(
45
"CD" => "Compact Disc",
46
"Record" => "Vinyl Record",
47
"Digital" => "Digital Download",
48
"Book" => "Books / Sheet Music"
49
);
70 - 50
 
66 - 51
$mediaTypeIconArr = array(
68 - 52
"CD" => "fas fa-compact-disc media-icon-silver",
53
"Record" => "fas fa-dot-circle media-icon-black",
54
"Digital" => "fas fa-download media-icon-black",
55
"Book" => "fas fa-book-open media-icon-black"
66 - 56
);