mirror of
https://git.d3data.de/3rdParty/captcha-module.git
synced 2024-12-22 04:16:17 +01:00
Daniel Seifert
89d543156f
This form is often used for spam attacks. Requires new template blocks in the frontend theme.
69 lines
2.8 KiB
PHP
Executable File
69 lines
2.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
|
*/
|
|
/**
|
|
* This file is part of OXID eSales Captcha module.
|
|
*
|
|
* TODO: license
|
|
*
|
|
* @category module
|
|
* @package captcha
|
|
* @author OXID eSales AG
|
|
* @link http://www.oxid-esales.com/
|
|
* @copyright (C) OXID eSales AG 2003-20162016
|
|
*/
|
|
|
|
/**
|
|
* Metadata version
|
|
*/
|
|
$sMetadataVersion = '1.1';
|
|
|
|
/**
|
|
* Module information
|
|
*/
|
|
$aModule = array(
|
|
'id' => 'oecaptcha',
|
|
'title' => array(
|
|
'de' => 'Simple Captcha',
|
|
'en' => 'Simple Captcha',
|
|
),
|
|
'description' => array(
|
|
'de' => 'OXID eSales Simple Captcha Module',
|
|
'en' => 'OXID eSales Simple Captcha Module',
|
|
),
|
|
'thumbnail' => 'out/pictures/picture.png',
|
|
'version' => '2.0.1',
|
|
'author' => 'OXID eSales AG',
|
|
'url' => 'http://www.oxid-esales.com/',
|
|
'email' => '',
|
|
'extend' => array('details' => 'oe/captcha/controllers/oecaptchadetails',
|
|
'contact' => 'oe/captcha/controllers/oecaptchacontact',
|
|
'invite' => 'oe/captcha/controllers/oecaptchainvite',
|
|
'newsletter' => 'oe/captcha/controllers/oecaptchanewsletter',
|
|
'pricealarm' => 'oe/captcha/controllers/oecaptchapricealarm',
|
|
'suggest' => 'oe/captcha/controllers/oecaptchasuggest',
|
|
'oxwarticledetails' => 'oe/captcha/application/component/widget/oecaptchawarticledetails'),
|
|
'files' => array(
|
|
'oecaptcha' => 'oe/captcha/core/oecaptcha.php',
|
|
'oecaptchaEvents' => 'oe/captcha/core/oecaptchaevents.php',
|
|
),
|
|
'templates' => array(
|
|
'oecaptcha.tpl' => 'oe/captcha/application/views/tpl/oecaptcha.tpl',
|
|
),
|
|
'blocks' => array(
|
|
array('template' => 'form/contact.tpl', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
|
|
array('template' => 'form/newsletter.tpl', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
|
|
array('template' => 'form/privatesales/invite.tpl', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
|
|
array('template' => 'form/pricealarm.tpl', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
|
|
array('template' => 'form/suggest.tpl', 'block'=>'captcha_form', 'file'=>'/application/views/blocks/captcha_form.tpl'),
|
|
),
|
|
'settings' => array(
|
|
array('group' => 'main', 'name' => 'oecaptchakey', 'type' => 'str', 'value' => ''),
|
|
),
|
|
'events' => array(
|
|
'onActivate' => 'oecaptchaevents::onActivate',
|
|
'onDeactivate' => 'oecaptchaevents::onDeactivate'
|
|
),
|
|
);
|