Mirror von
https://git.d3data.de/3rdParty/captcha-module.git
synchronisiert 2024-11-01 04:44:37 +01:00
38 Zeilen
983 B
PHP
38 Zeilen
983 B
PHP
|
<?php
|
||
|
/**
|
||
|
* #PHPHEADER_OECAPTCHA_LICENSE_INFORMATION#
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* Pricealarm window.
|
||
|
* Arranges "pricealarm" window, by sending eMail and storing into Database (etc.)
|
||
|
* submission. Result - "pricealarm.tpl" template. After user correctly
|
||
|
* fulfils all required fields all information is sent to shop owner by
|
||
|
* email.
|
||
|
* OXID eShop -> pricealarm.
|
||
|
*/
|
||
|
class oeCaptchaPricealarm extends oeCaptchaPricealarm_parent
|
||
|
{
|
||
|
/**
|
||
|
* Validates email
|
||
|
* address. If email is wrong - returns false and exits. If email
|
||
|
* address is OK - creates prcealarm object and saves it
|
||
|
* (oxpricealarm::save()). Sends pricealarm notification mail
|
||
|
* to shop owner.
|
||
|
*
|
||
|
* @return bool false on error
|
||
|
*/
|
||
|
public function addme()
|
||
|
{
|
||
|
//control captcha
|
||
|
$captcha = oxNew('oeCaptcha');
|
||
|
if (!$captcha->passCaptcha(false)) {
|
||
|
$this->_iPriceAlarmStatus = 2;
|
||
|
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
return parent::addme();
|
||
|
}
|
||
|
}
|