Subversion Repositories cheapmusic

Rev

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