Subversion Repositories cheapmusic

Rev

Rev 112 | Rev 127 | 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
);
116 - 22
$wlFreqHoursArr = array(
23
    23,
24
    167,
25
    335,
26
    719
27
); // minimum hours between emails
71 - 28
// FindCheapMusic Site Config file
70 - 29
define("FCM_CONFIGFILE", "/../MyFiles/config/cheapmusic.ini");
74 - 30
define("FCM_WLLOGFILE", "/../MyFiles/logs/wishlist_email.log");
70 - 31
 
73 - 32
$condArr = array(
33
    'Any',
34
    'New',
35
    'Used'
36
);
37
 
65 - 38
$formatArr = array(
39
    'Any',
40
    'CD',
41
    'Record',
42
    'Digital',
43
    'Book'
44
);
66 - 45
 
116 - 46
$buyItNowTooltip = "See store for details #ad";
70 - 47