jaguero / meshi-contact
Fun forms for AmulenCMS
1.0.1
2017-06-21 01:29 UTC
Requires
This package is not auto-updated.
Last update: 2024-11-18 12:57:08 UTC
README
Fun forms plugin for AmulenCMS
Install
Require with composer:
composer require jaguero/meshi-contact
Run Amulen install command:
php app/console amulen:plugin:register "Jaguero\MeshiContactBundle\JagueroMeshiContactBundle"
Update DB schema:
php app/console doctrine:schema:update --force
For ReCaptcha:
This plugin is using the excellent bundle: https://github.com/excelwebzone/EWZRecaptchaBundle
Quick install:
Register the lib bundle:
<?php // in AppKernel::registerBundles() $bundles = array( // ... new EWZ\Bundle\RecaptchaBundle\EWZRecaptchaBundle(), // ... );
Add the following to your config file:
# 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%