<?php
// Note: this works in the event content type, but not if the event is promoted to the front page.
// Use the "concert announcement" template for an announcement node for the front page.
// Set these variables based on the concert specifics.
$title = "November 10, 2007: Thomas Viloteau";
$date = "Saturday, November 10, 2007, 7:30pm";
$ticketcost = "15";
$imagefile = "2007/viloteau.jpg";
$blurb = "\"2006 Guitar Foundation of American Solo Competition Winner\"\n";
// $blurb .= "- Musical Opinion (UK)\n";
$blurb .= "www.guitarfoundation.org\n";
$onlinesalesopen = FALSE;
// Print the event content, formatted
print "
" . $title . "
\n";
print "\n";
print "
\n";
print "\n";
print "Date: " . $date . "\n";
print "Location: South Broadway Christian Church, Denver (map)\n";
print "Tickets: $" . $ticketcost . "\n";
print $blurb;
print "\n";
if ($onlinesalesopen) {
// Add to cart
print "\n";
print "\n";
print "
\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
// View cart
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "\n";
print "Please note: on-line purchases include a small handling fee to cover our transaction processing costs.\n";
print "You may also order tickets by mail using this form.\n";
print "Tickets purchased on-line or by mail within two weeks of the concert will be held for you at the door;\n";
print "please bring identification with you to pick up your tickets. Tickets purchased more than two weeks before \n";
print "the concert will be mailed to you.\n";
} else {
print "Note: online sales have closed; tickets are available at the door. Thank you.";
}
?>