mirror of
https://github.com/e107inc/e107.git
synced 2025-02-07 07:47:59 +01:00
24 lines
573 B
PHP
24 lines
573 B
PHP
<?php
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
e107::lan('core','contact');
|
|
|
|
$head = '<form id="contact-menu" action="'.e_HTTP.'contact.php" method="post" >';
|
|
|
|
|
|
//XXX Template must conform to Bootstrap specs: http://twitter.github.com/bootstrap/base-css.html#forms
|
|
//TODO Security Image.
|
|
|
|
|
|
$foot = '</form>';
|
|
|
|
$template = e107::getCoreTemplate('contact','menu');
|
|
$contact_shortcodes = e107::getScBatch('contact');
|
|
$text = $tp->parseTemplate($head. $template . $foot, true, $contact_shortcodes);
|
|
|
|
|
|
$ns->tablerender(LANCONTACT_00, $text, 'contact-menu');
|
|
|
|
|
|
?>
|