Subversion Repositories cheapmusic

Rev

Rev 86 | Rev 116 | 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',
73 - 19
    'Bi-Weekly',
71 - 20
    'Monthly'
21
);
73 - 22
$wlFreqHoursArr = array(23, 167, 335, 719); // minimum hours between emails
71 - 23
 
24
// FindCheapMusic Site Config file
70 - 25
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
74 - 26
define("FCM_WLLOGFILE", "/../MyFiles/logs/wishlist_email.log");
70 - 27
 
73 - 28
$condArr = array(
29
    'Any',
30
    'New',
31
    'Used'
32
);
33
 
65 - 34
$formatArr = array(
35
    'Any',
36
    'CD',
37
    'Record',
38
    'Digital',
39
    'Book'
40
);
66 - 41
 
42
$mediaTypeTextArr = array(
43
"CD" => "Compact Disc",
44
"Record" => "Vinyl Record",
45
"Digital" => "Digital Download",
86 - 46
"Book" => "Book / Sheet Music"
66 - 47
);
70 - 48
 
66 - 49
$mediaTypeIconArr = array(
68 - 50
"CD" => "fas fa-compact-disc media-icon-silver",
79 - 51
"Record" => "fas fa-record-vinyl media-icon-black",
68 - 52
"Digital" => "fas fa-download media-icon-black",
53
"Book" => "fas fa-book-open media-icon-black"
66 - 54
);
86 - 55
 
56
$buyItNowTooltip = "See store for details #ad";