Subversion Repositories cheapmusic

Rev

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