jaguero/meshi-contact

AmulenCMS 的趣味表单

1.0.1 2017-06-21 01:29 UTC

This package is not auto-updated.

Last update: 2024-09-23 12:16:07 UTC


README

AmulenCMS 的趣味表单插件

安装

使用 composer 进行依赖管理

  composer require jaguero/meshi-contact

运行 Amulen 安装命令

  php app/console amulen:plugin:register "Jaguero\MeshiContactBundle\JagueroMeshiContactBundle"

更新数据库模式

  php app/console doctrine:schema:update --force

关于 ReCaptcha

本插件使用优秀的包:https://github.com/excelwebzone/EWZRecaptchaBundle

快速安装

注册库包

<?php

// in AppKernel::registerBundles()
$bundles = array(
    // ...
    new EWZ\Bundle\RecaptchaBundle\EWZRecaptchaBundle(),
    // ...
);

将以下内容添加到您的配置文件中

# app/config/config.yml

ewz_recaptcha:
    public_key:  here_is_your_public_key
    private_key: here_is_your_private_key
    # Not needed as "%kernel.default_locale%" is the default value for the locale key
    locale_key:  %kernel.default_locale%