useDefaultColumns(false);
$page->setColumns(array(100));
$page->addStyle('feedbackForm.css');
$page->addStyle('contact.css');
$wrapper = new WrapperModule(array(50,50));
$wrapper->addModule(emailListMod(), 0);
$wrapper->addModule(contactFormMod(), 1 );
$page->addModule($wrapper, 0);
//$page->addModule(footerMod(), 0); // EXAMPLE: If you have a blog, wiki, forums, or other related media, the footer module is a great place to link out to those pages/sites.
$page->display();
////
// Displays contact email addresses for the site with javascripted links to email them.
////
function emailListMod(){
$title = "General Info";
ob_start();
?>
Information
If you don't know which address to send it to, send it here and we'll redirect it for you.
|
|
Support
Customer support, tech support.
|
|
Sean (CEO)
Go ahead, he doesn't bite.
|
|
Developers
Contact our developers. Report bugs, etc.
|
|
Security
Security-related concerns and bug-reports.
|
|
It is our goal to respond to all inquiries within 24-48 hours, but we're usually much faster.\n"; // STRINGTABLES
$content = ob_get_clean();
$retVal = new TextModule($content, 'text', $title);
return $retVal;
} // end contactFormMod()
// Links to other pages if this page was insufficient.
function footerMod(){
$title = "For more information..."; // STRINGTABLES
ob_start();
// EXAMPLE: Change these to link to real pages if you have a wiki, blog, forum, etc. You will also need to uncomment the line above where this module is added to the page.
print "For more information, visit the press room, investors page, or our official blog.\n";
$content = ob_get_clean();
$retVal = new TextModule($content, 'text', $title);
return $retVal;
} // end footerMod()
?>