DokuWiki

It's better when it's simple

User Tools

Site Tools


plugin:captcha

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
plugin:captcha [2021-11-10 23:50] – version upped andiplugin:captcha [2022-08-10 17:17] – [check($msg=true)] Klap-in
Line 6: Line 6:
 email      : andi@splitbrain.org email      : andi@splitbrain.org
 type       : action, helper type       : action, helper
-lastupdate : 2021-11-10+lastupdate : 2022-01-11
 compatible : Elenor Of Tsort, Detritus, Binky, Ponder Stibbons, Hrun, "Frusterick Manners", "Greebo", Hogfather compatible : Elenor Of Tsort, Detritus, Binky, Ponder Stibbons, Hrun, "Frusterick Manners", "Greebo", Hogfather
 depends    :  depends    : 
Line 88: Line 88:
 Use this function to check if the CAPTCHA was filled correctly. It returns ''false'' if the CAPTCHA was not filled correctly and by default also prints a message about it. If you don't want this message, pass ''false'' as first parameter. Use this function to check if the CAPTCHA was filled correctly. It returns ''false'' if the CAPTCHA was not filled correctly and by default also prints a message about it. If you don't want this message, pass ''false'' as first parameter.
  
 +
 +==== Example ====
 +<code php>
 +//add captcha if available
 +/** @var helper_plugin_captcha $captcha */
 +$captcha = $this->loadHelper('captcha', false);
 +if ($captcha && $captcha->isEnabled()) {
 +    $form->addHTML($captcha->getHTML());
 +}
 +
 +...
 +
 +/** @var helper_plugin_captcha $captcha */
 +$captcha = $this->loadHelper('captcha', false);
 +if ($captcha && $captcha->isEnabled()) {
 +    $captchaok = $captcha->check();
 +}
 +</code>
 ===== FAQ ===== ===== FAQ =====
  
plugin/captcha.txt · Last modified: 2023-12-06 23:50 by andi

Except where otherwise noted, content on this wiki is licensed under the following license: CC Attribution-Share Alike 4.0 International
CC Attribution-Share Alike 4.0 International Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki