| Amiro.Ru / Manual | |||||
|
Packages:
DB Debug Driver_PaymentSystem Environment Library Module ModuleComponent Package Plugin Plugin_AJAXResponder Plugin_Sample Service Template TxCommand TxService Hyper_AmiCatalog Hyper_AmiClean Hyper_AmiEshopShipping Hyper_AmiExt Hyper_AmiFiles Hyper_AmiMultifeeds Hyper_AmiSearch Hyper_AmiUsers Config_AmiCatalog_Items Config_AmiClean_AmiNewsList Config_AmiClean_AmiSample Config_AmiClean_EshopOrder Config_AmiClean_Webservice Config_AmiEshopShipping_Fields Config_AmiEshopShipping_Methods Config_AmiEshopShipping_Types Config_AmiFake_AmiroPayDrvExample Config_AmiFiles_Files Config_AmiMultifeeds_Articles Config_AmiMultifeeds_Blog Config_AmiMultifeeds_FAQ Config_AmiMultifeeds_News Config_AmiMultifeeds_PhotoGallery Config_AmiMultifeeds_Stickers Config_AmiUsers_Users Module_Catalog Module_Pages Module_Sample Module_SearchHistory
Interfaces:
Classes:
AMI
AMI_BackgroundProcess AMI_Cache AMI_Captcha AMI_CaptchaImage AMI_Event AMI_Exception AMI_ExternalAuthDriver AMI_HTMLResponse AMI_HTTPRequest AMI_HTTPResponse AMI_Mail AMI_MailQueue AMI_PageManager AMI_Response AMI_Service AMI_UserSourceApp AMI_UserSourceAppDriver Amiro_UserSourceAppDriver Facebook_UserSourceAppDriver Loginza_UserSourceAppDriver Twitter_UserSourceAppDriver VBulletin_ExternalAuthDriver VKontakte_UserSourceAppDriver |
Loading search... The AMI_Captcha class• IntroductionCapctha class provides capthca manipulation functionality. At this moment not recomended to use. Use only AMI_CaptchaImage. • Class synopsis
AMI_Captcha
implements AMI_iCaptcha
{
/* Properties */
// Number of digits
// Contains module name manipulating captha.
// Image generator object.
// Captcha data stored in db time period.
// Session id.
/* Methods */
// Return coresponding constat (CHARSET_DIGITS, CHARSET_LETTERS, CHARSET_LETTERS|CHARSET_DIGITS ) value to incoming $charset.
public
static
getConstantCharset ( string $charset ) returns self::CHARSET_DIGITS|self::CHARSET_LETTERS|(self::CHARSET_LETTERS|self::CHARSET_DIGITS);
// Constructor.
public
__construct ( string $modId, string $sid, [ int $digits = 4 ], [ string $charset = self::CHARSET_DIGITS ] ) returns AMI_Captcha;
// Returns ImageGenerator object.
// Loads image string from db.
// Removes record from DB.
// Saves image string to DB.
}
Tags:
• Class Properies
• Class Methods// Return coresponding constat (CHARSET_DIGITS, CHARSET_LETTERS, CHARSET_LETTERS|CHARSET_DIGITS ) value to incoming $charset.
public
static
getConstantCharset ( string $charset ) returns self::CHARSET_DIGITS|self::CHARSET_LETTERS|(self::CHARSET_LETTERS|self::CHARSET_DIGITS);
// Constructor.
public
__construct ( string $modId, string $sid, [ int $digits = 4 ], [ string $charset = self::CHARSET_DIGITS ] ) returns AMI_Captcha;
Implementation of: AMI_iCaptcha::__construct(). // Returns ImageGenerator object.
Implementation of: AMI_iCaptcha::getImageGenerator(). // Loads image string from db.
Implementation of: AMI_iCaptcha::loadImageString(). // Removes record from DB.
Implementation of: AMI_iCaptcha::removeRecord(). // Saves image string to DB.
Implementation of: AMI_iCaptcha::saveImageString(). |