部分中的自定义联系表单以及在静态页面插件中的使用

时间:2017-04-11 10:06:49

标签: php octobercms octobercms-backend octobercms-plugins october-partial

我使用了OctoberCMSStatic Pages插件,我正在创建静态页面。

问题是,我在Partial中创建了一个联系表单,如下所示。

contactform_snippet.htm - 加价

enter image description here

contactform_snippet.htm - 代码

enter image description here

以下是我创建的静态页面,并使用了我刚创建的 contactform_snippet.htm

enter image description here

以下是预览它的外观。

enter image description here

问题是,即使我点击"提交"按钮,它没有做任何事情。

我还将表单代码从data-request="{{ __SELF__ }}::onSendInquiry"更改为data-request="onSendInquiry",但后来我收到以下错误说:

  

AJAX处理程序' onSendInquiry'没找到。

这里的内容是,我在 CMS页面中创建并复制了类似的内容,而不是静态页面,所有这些都在验证并发送电子邮件。

所以我的问题是如何使用 Snippets 静态页面中使用相同的功能。我知道可以通过创建组件来实现,但我有很多表单,我想实现类似的东西以使其工作。有什么想法让我在这里工作需要什么?

谢谢

1 个答案:

答案 0 :(得分:0)

好的家伙,最后我通过将我的data-request="onSendInquiry"放在我的表单中并将代码放在我的 default.htm 布局文件中来实现它。

function onSendInquiry()
{
    // Collect input
    $name = post('name');
    $email = post('email');
    $subject = post('subject');
    $msg = post('msg');

    // Form Validation
    $validator = Validator::make(
        [
            'name' => $name,
            'email' => $email,
            'subject' => $subject,
            'msg' => $msg,
        ],
        [
            'name' => 'required',
            'email' => 'required|email',
            'subject' => 'required',
            'msg' => 'required',
        ]
    );

    if ($validator->fails())
    {

        $messages = $validator->messages();
        throw new ApplicationException($messages->first());
        //Retrieving all error messages for all fields
        /*foreach ($messages->all() as $message) {
            throw new ApplicationException($message);
        }*/
        //throw new ApplicationException($messages);
    }


    // All is well -- Submit form
    $to = System\Models\MailSetting::get('sender_email');
    //$to = System\Models\MailSettings::get('sender_email');
    //$to = config('mail.from.address');
    //$to = 'mittul@technobrave.com';
    //die($to);
    $params = compact('name','email','subject','msg');
    Mail::sendTo($to, 'yourappname.website::mail.contactform', $params);
    return true;
}]

到目前为止距离如此之近。最后得到它。谢谢