Rev 65 | Rev 68 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed
<?php
// Search Types
define("NEW", 0);
define("USED", 1);
define("DIGITAL", 2);
define("BOOK", 3);
define("MAXPULLRESULTS", 50);
define("MAXSHOWRESULTS", 25);
define("MAXTITLELENGTH", 80);
$buttonArr = array(
'All',
'New',
'Used',
'CD',
'Record',
'Digital',
'Book'
);
$formatArr = array(
'Any',
'CD',
'Record',
'Digital',
'Book'
);
$mediaTypeTextArr = array(
"CD" => "Compact Disc",
"Record" => "Vinyl Record",
"Digital" => "Digital Download",
"Book" => "Books / Sheet Music"
);
$mediaTypeIconArr = array(
"CD" => "fas fa-compact-disc category-icon-silver",
"Record" => "fas fa-dot-circle",
"Digital" => "fas fa-download",
"Book" => "fas fa-book-open"
);