CMS: Concrete5 版本: 8.3.2
我在全球区域添加了快速表格块。如果有人填写表格,我会收到电子邮件回复。在电子邮件响应中,不清楚表单发送到哪个特定页面。它只显示表单的名称(由于全局区域在所有页面上相同),表单结果和链接到CMS中的结果。
所以我需要在$page->getCollectionName()
express_form > controller.php
之类的内容
我找到了一个链接(https://www.concrete5.org/community/forums/customizing_c5/form-submission-from-specific-page/#905411),但这是旧版本的版本,似乎无法在最新版本中使用。
任何想法?
编辑解决方案:
编辑:block_express_form_submission.php
<?php
defined('C5_EXECUTE') or die("Access Denied.");
$formDisplayUrl = URL::to('/dashboard/reports/forms', 'view', $entity->getEntityResultsNodeId());
$c = Page::getCurrentPage();
$submittedData = '';
foreach($attributes as $value) {
$submittedData .= $value->getAttributeKey()->getAttributeKeyDisplayName('text') . ":\r\n";
$submittedData .= $value->getPlainTextValue() . "\r\n\r\n";
}
$body = t("
Form pagename: %s
Form name: %s
%s
View all form results %s
", $c->getCollectionName(), $formName, $submittedData, $formDisplayUrl);
答案 0 :(得分:1)
concrete5使用/concrete/mail/block_form_submission.php
电子邮件模板发送有关快速表单提交的通知。
您可以通过将此文件复制到/application/mail
文件夹并进行编辑来自定义此模板。
例如,要添加页面名称,您可以添加以下行:
$c = Page::getCurrentPage();
$body .= "\n" . t('Page name: %s', $c->getCollectionName());