Subversion Repositories cheapmusic

Rev

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
 
138 - 15
define("SIMPLE_SEARCH", 0);
16
define("ADVANCED_SEARCH", 1);
141 - 17
define("AS_FIELD", "*:*");
18
define("AS_TOKEN", "*|*");
138 - 19
 
20
// Wishlist frequencies
71 - 21
define("DAILY", 0);
22
define("WEEKLY", 1);
23
define("MONTHLY", 2);
24
$wlFreqArr = array(
25
    'Daily',
26
    'Weekly',
73 - 27
    'Bi-Weekly',
71 - 28
    'Monthly'
29
);
116 - 30
$wlFreqHoursArr = array(
31
    23,
32
    167,
33
    335,
34
    719
35
); // minimum hours between emails
71 - 36
// FindCheapMusic Site Config file
70 - 37
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
74 - 38
define("FCM_WLLOGFILE", "/../MyFiles/logs/wishlist_email.log");
70 - 39
 
73 - 40
$condArr = array(
41
    'Any',
42
    'New',
43
    'Used'
44
);
45
 
65 - 46
$formatArr = array(
47
    'Any',
48
    'CD',
49
    'Record',
50
    'Digital',
51
    'Book'
52
);
66 - 53
 
116 - 54
$buyItNowTooltip = "See store for details #ad";
70 - 55