Subversion Repositories cheapmusic

Rev

Rev 116 | Rev 138 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1 - 1
<?php
127 - 2
// Pixel
3
define("PIXEL", "data:image/png;base64,R0lGODlhAQABAAD/ACwAAAAAAQABAAACADs=");
4
 
1 - 5
// Search Types
6
define("NEW", 0);
7
define("USED", 1);
8
define("DIGITAL", 2);
20 - 9
define("BOOK", 3);
1 - 10
 
11
define("MAXPULLRESULTS", 50);
12
define("MAXSHOWRESULTS", 25);
65 - 13
define("MAXTITLELENGTH", 80);
59 - 14
 
71 - 15
// Wishlist freuencies
16
define("DAILY", 0);
17
define("WEEKLY", 1);
18
define("MONTHLY", 2);
19
$wlFreqArr = array(
20
    'Daily',
21
    'Weekly',
73 - 22
    'Bi-Weekly',
71 - 23
    'Monthly'
24
);
116 - 25
$wlFreqHoursArr = array(
26
    23,
27
    167,
28
    335,
29
    719
30
); // minimum hours between emails
71 - 31
// FindCheapMusic Site Config file
70 - 32
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
74 - 33
define("FCM_WLLOGFILE", "/../MyFiles/logs/wishlist_email.log");
70 - 34
 
73 - 35
$condArr = array(
36
    'Any',
37
    'New',
38
    'Used'
39
);
40
 
65 - 41
$formatArr = array(
42
    'Any',
43
    'CD',
44
    'Record',
45
    'Digital',
46
    'Book'
47
);
66 - 48
 
116 - 49
$buyItNowTooltip = "See store for details #ad";
70 - 50