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
plugin:captcha [2021-07-22 23:50] – version upped andiplugin:captcha [2023-12-06 23:50] (current) – version upped andi
Line 6: Line 6:
 email      : andi@splitbrain.org email      : andi@splitbrain.org
 type       : action, helper type       : action, helper
-lastupdate : 2021-07-22+lastupdate : 2023-12-06
 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 26: Line 26:
  
 Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually. Search and install the plugin using the [[plugin:extension|Extension Manager]]. Refer to [[:Plugins]] on how to install plugins manually.
 +
 ==== Changes ==== ==== Changes ====
  
Line 88: Line 89:
 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 =====
  
Line 93: Line 112:
  
 Read the documentation again. The default settings **js** method uses a [[http://www.google.com/search?q=javascript+invisible+captcha|hidden CAPTCHA]]. There's nothing to see. Read the documentation again. The default settings **js** method uses a [[http://www.google.com/search?q=javascript+invisible+captcha|hidden CAPTCHA]]. There's nothing to see.
- 
plugin/captcha.1626990610.txt.gz · Last modified: 2021-07-22 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