Subversion Repositories cheapmusic

Rev

Rev 76 | Rev 86 | 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
 
65 - 28
$buttonArr = array(
29
    'All',
30
    'New',
31
    'Used',
32
    'CD',
33
    'Record',
34
    'Digital',
35
    'Book'
36
);
70 - 37
 
73 - 38
$condArr = array(
39
    'Any',
40
    'New',
41
    'Used'
42
);
43
 
65 - 44
$formatArr = array(
45
    'Any',
46
    'CD',
47
    'Record',
48
    'Digital',
49
    'Book'
50
);
66 - 51
 
52
$mediaTypeTextArr = array(
53
"CD" => "Compact Disc",
54
"Record" => "Vinyl Record",
55
"Digital" => "Digital Download",
56
"Book" => "Books / Sheet Music"
57
);
70 - 58
 
66 - 59
$mediaTypeIconArr = array(
68 - 60
"CD" => "fas fa-compact-disc media-icon-silver",
79 - 61
"Record" => "fas fa-record-vinyl media-icon-black",
68 - 62
"Digital" => "fas fa-download media-icon-black",
63
"Book" => "fas fa-book-open media-icon-black"
66 - 64
);