Subversion Repositories cheapmusic

Rev

Rev 127 | Rev 141 | 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
 
138 - 15
define("SIMPLE_SEARCH", 0);
16
define("ADVANCED_SEARCH", 1);
17
 
18
// Wishlist frequencies
71 - 19
define("DAILY", 0);
20
define("WEEKLY", 1);
21
define("MONTHLY", 2);
22
$wlFreqArr = array(
23
    'Daily',
24
    'Weekly',
73 - 25
    'Bi-Weekly',
71 - 26
    'Monthly'
27
);
116 - 28
$wlFreqHoursArr = array(
29
    23,
30
    167,
31
    335,
32
    719
33
); // minimum hours between emails
71 - 34
// FindCheapMusic Site Config file
70 - 35
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
74 - 36
define("FCM_WLLOGFILE", "/../MyFiles/logs/wishlist_email.log");
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
 
116 - 52
$buyItNowTooltip = "See store for details #ad";
70 - 53