本文整理汇总了PHP中ContactForm::output方法的典型用法代码示例。如果您正苦于以下问题:PHP ContactForm::output方法的具体用法?PHP ContactForm::output怎么用?PHP ContactForm::output使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类ContactForm
的用法示例。
在下文中一共展示了ContactForm::output方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: define
$form->Build();
$form->enforceRules();
$showForm = !($form->submitted() && $form->validate());
$intro_id = $showForm ? AMP_CONTENT_PUBLICPAGE_ID_CONTACT_US : AMP_CONTENT_PUBLICPAGE_ID_CONTACT_US_RESPONSE;
$modid = AMP_MODULE_ID_CONTACT_US;
require_once "AMP/BaseTemplate.php";
$flash =& AMP_System_Flash::instance();
print $flash->execute();
require_once "AMP/BaseModuleIntro.php";
if (!isset($MM_email_contact)) {
$MM_email_contact = false;
}
if (!defined('AMP_SITE_EMAIL_CONTACT')) {
define('AMP_SITE_EMAIL_CONTACT', $MM_email_contact);
}
if ($showForm) {
print $form->output();
} elseif (AMP_SITE_EMAIL_CONTACT) {
$data = $form->getValues();
require_once 'AMP/System/Email.inc.php';
$email_maker = new AMPSystem_Email();
$email_maker->setRecipient(AMP_SITE_EMAIL_CONTACT);
$email_maker->setMessage($data['message']);
$email_maker->setSender($data['sender_email']);
$email_maker->setSenderName(false);
$email_maker->setSubject($data['subject']);
$email_maker->execute();
} else {
print AMP_TEXT_ERROR_TOOL_NOT_CONFIGURED;
}
require_once "AMP/BaseFooter.php";