mirror of
https://github.com/e107inc/e107.git
synced 2025-01-17 20:58:30 +01:00
106 lines
2.8 KiB
PHP
106 lines
2.8 KiB
PHP
<?php
|
|
/*
|
|
* e107 website system
|
|
*
|
|
* Copyright (C) 2008-2016 e107 Inc (e107.org)
|
|
* Released under the terms and conditions of the
|
|
* GNU General Public License (http://www.gnu.org/licenses/gpl.txt)
|
|
*
|
|
* Contact Template
|
|
*/
|
|
// $Id$
|
|
|
|
if (!defined('e107_INIT')) { exit; }
|
|
|
|
|
|
$CONTACT_TEMPLATE['info'] = "
|
|
|
|
<div id='contactInfo' >
|
|
<address>{SITECONTACTINFO}</address>
|
|
</div>
|
|
|
|
";
|
|
|
|
|
|
$CONTACT_TEMPLATE['menu'] = '
|
|
<div class="contactMenuForm">
|
|
<div class="control-group form-group">
|
|
<label for="contactName">'.LANCONTACT_03.'</label>
|
|
{CONTACT_NAME}
|
|
</div>
|
|
|
|
<div class="control-group form-group">
|
|
<label class="control-label" for="contactEmail">'.LANCONTACT_04.'</label>
|
|
{CONTACT_EMAIL}
|
|
</div>
|
|
<div class="control-group form-group">
|
|
<label for="contactBody" >'.LANCONTACT_06.'</label>
|
|
{CONTACT_BODY=rows=5&cols=30}
|
|
</div>
|
|
<div class="form-group"><label for="gdpr">'.LANCONTACT_24.'</label>
|
|
<div class="checkbox form-check">
|
|
<label>{CONTACT_GDPR_CHECK} '.LANCONTACT_21.'</label>
|
|
<div class="help-block">{CONTACT_GDPR_LINK}</div>
|
|
</div>
|
|
</div>
|
|
{CONTACT_SUBMIT_BUTTON: class=btn btn-sm btn-small btn-primary button}
|
|
</div>
|
|
';
|
|
|
|
|
|
|
|
// Shortcode wrappers.
|
|
$CONTACT_WRAPPER['form']['CONTACT_IMAGECODE'] = "<div class='control-group form-group'><label for='code-verify'>{CONTACT_IMAGECODE_LABEL}</label> {---}";
|
|
$CONTACT_WRAPPER['form']['CONTACT_IMAGECODE_INPUT'] = "{---}</div>";
|
|
$CONTACT_WRAPPER['form']['CONTACT_EMAIL_COPY'] = "<div class='control-group form-group'>{---}".LANCONTACT_07."</div>";
|
|
$CONTACT_WRAPPER['form']['CONTACT_PERSON'] = "<div class='control-group form-group'><label for='contactPerson'>".LANCONTACT_14."</label>{---}</div>";
|
|
|
|
|
|
|
|
|
|
$CONTACT_TEMPLATE['form'] = "
|
|
<form action='".e_SELF."' method='post' id='contactForm' >
|
|
|
|
{CONTACT_PERSON}
|
|
<div class='control-group form-group'><label for='contactName'>".LANCONTACT_03."</label>
|
|
{CONTACT_NAME}
|
|
</div>
|
|
<div class='control-group form-group'><label for='contactEmail'>".LANCONTACT_04."</label>
|
|
{CONTACT_EMAIL}
|
|
</div>
|
|
<div class='control-group form-group'><label for='contactSubject'>".LANCONTACT_05."</label>
|
|
{CONTACT_SUBJECT}
|
|
</div>
|
|
|
|
{CONTACT_EMAIL_COPY}
|
|
|
|
<div class='control-group form-group'><label for='contactBody'>".LANCONTACT_06."</label>
|
|
{CONTACT_BODY}
|
|
</div>
|
|
|
|
{CONTACT_IMAGECODE}
|
|
{CONTACT_IMAGECODE_INPUT}
|
|
|
|
<div class='form-group'><label for='gdpr'>".LANCONTACT_24."</label>
|
|
<div class='checkbox'>
|
|
<label>{CONTACT_GDPR_CHECK} ".LANCONTACT_21."</label>
|
|
<div class='help-block'>{CONTACT_GDPR_LINK}</div>
|
|
</div>
|
|
</div>
|
|
|
|
|
|
|
|
<div class='form-group'>
|
|
{CONTACT_SUBMIT_BUTTON}
|
|
</div>
|
|
|
|
</form>";
|
|
|
|
// Customize the email subject
|
|
// Variables: CONTACT_SUBJECT and CONTACT_PERSON as well as any custom fields set in the form. )
|
|
$CONTACT_TEMPLATE['email']['subject'] = "{CONTACT_SUBJECT}";
|
|
|
|
|
|
|
|
|