Home
last modified time | relevance | path

Searched refs:captcha (Results 1 – 25 of 30) sorted by relevance

12

/plugin/preregister/
Daction.php21 private $captcha; variable in action_plugin_preregister
40 if($this->captcha == 'none' || $this->captcha == 'builtin') {
78 if($this->captcha =='captcha') {
79 $captcha = $this->loadHelper('captcha', true);
80 if(!$captcha->check()) {
86 if($this->captcha == 'builtin') {
165 if($this->captcha == 'builtin') {
201 $this->captcha = $this->getConf('captcha');
203 if(preg_match("/captcha/", $this->captcha)) {
204 $this->captcha = 'builtin';
[all …]
DREADME.md4 Dokuwiki plugin for registering by means of a confirmation link, with built-in captcha as well as
5 choice of using the captcha plugin instead.
/plugin/contactmodern/
Dsyntax.php34 public static $captcha = false; variable in syntax_plugin_moderncontact
157 if($conf['plugin']['moderncontact']['captcha'] == 1 && $captcha == true) {
163 $this->_set_error('captcha', $lang["captcha"]);
258 …$captcha = ($conf['plugin']['moderncontact']['captcha'] == 1 && syntax_plugin_moderncontact::$capt…
265 if($this->_send_contact($captcha))
276 if($captcha) {
284 syntax_plugin_moderncontact::$captcha = true;
DREADME.textile48 … will send an email to whatever the default value is. If you enabled the captcha by default, than …
62 | captcha | If set to true, the captcha will be enabled. Set it on false to disable it. You must ac…
DCHANGELOG30 * Error with captcha parameter solved.
/plugin/recommend/
Daction.php166 $captcha = plugin_load('helper', 'captcha');
167 if ($captcha) $form->addHTML($captcha->getHTML());
193 $captcha = null;
194 if (@is_dir(DOKU_PLUGIN . 'captcha')) $captcha = plugin_load('helper','captcha');
195 if (!is_null($captcha) && $captcha->isEnabled() && !$captcha->check()) {
/plugin/infomail/
Daction.php99 $captcha = plugin_load('helper', 'captcha');
100 if ($captcha) $form->addHTML($captcha->getHTML());
124 $captcha = plugin_load('helper', 'captcha');
125 if ($captcha && !$captcha->check()) {
/plugin/dokumicrobugtracker/
DCHANGELOG4 …-17 Add several feature, email notification, delete (for admin only), dynamic captcha (#3, #5, #6)
5 Version 2010-08-26 Fix bug on the dynamic captcha, notifications, clear description area after rep…
11 …), Implement #64 (No report without information), Use captcha helper plugin for consistent captcha
DREADME.md68 | 2010-08-17 | Add several feature, email notification, delete (for admin only), dynamic captcha (#…
69 | 2010-08-26 | Fix bug on the dynamic captcha, notifications, clear description area after report |
75 …), Implement #64 (No report without information), Use captcha helper plugin for consistent captcha
/plugin/captcha/
Dplugin.info.txt1 base captcha
7 url http://www.dokuwiki.org/plugin:captcha
DREADME1 captcha Plugin for DokuWiki
4 http://www.dokuwiki.org/plugin:captcha
7 lib/plugins/captcha/ - if the folder is called different it
Daction.php7 use dokuwiki\plugin\captcha\FileCookie;
8 use dokuwiki\plugin\captcha\IpCounter;
DIpCounter.php3 namespace dokuwiki\plugin\captcha;
DFileCookie.php3 namespace dokuwiki\plugin\captcha;
/plugin/ckgdoku/action/
Dedit.php25 var $captcha; variable in action_plugin_ckgdoku_edit
34 $this->captcha = plugin_load('helper', 'captcha');
35 If(!$this->captcha) $this->captcha = false;
37 else $this->captcha = false;
680 …user || $guest_group ||!$USERINFO) && $guest_perm < 4 && $this->captcha && $this->captcha->isEnabl…
862 <?php if($this->captcha && $this->captcha->isEnabled()) echo $this->captcha->getHTML(); ?>
960 var ckgdoku_hasCaptcha = "<?php echo $this->captcha?1:0?>";
Dmeta.php21 var $captcha = false; variable in action_plugin_ckgdoku_meta
32 $this->captcha = true;
739 if($auth >= $auth_captcha && $this->captcha) {
/plugin/groupmail/
Dsyntax.php36 public static $captcha = false; variable in syntax_plugin_groupmail
225 …$captcha = ($this->getConf('captcha') == 1 && syntax_plugin_groupmail::$captcha == false)?true:fal…
237 if($this->_send_groupmail($captcha, $sendlog))
277 if($captcha) {
285 syntax_plugin_groupmail::$captcha = true;
362 protected function _send_groupmail($captcha=false, $sendlog){ argument
379 if($this->getConf('captcha') == 1 && $captcha == true) {
DREADME.textile50 … will send an email to whatever the default value is. If you enabled the captcha by default, than …
101 | captcha | If set to true, the captcha will be enabled. Set it on false to disable it. You must ac…
DCHANGELOG66 * Error with captcha parameter solved.
/plugin/ckgedit/action/
Dedit.php25 var $captcha; variable in action_plugin_ckgedit_edit
34 $this->captcha = plugin_load('helper', 'captcha');
36 else $this->captcha = false;
921 <?php if($this->captcha && $this->captcha->isEnabled()) echo $this->captcha->getHTML(); ?>
1019 var ckgedit_hasCaptcha = "<?php echo $this->captcha?1:0?>";
/plugin/blogtng/helper/
Dcomments.php515 $captcha = $this->loadHelper('captcha', false);
516 if ($captcha && $captcha->isEnabled()) {
517 $form->addHTML($captcha->getHTML());
/plugin/captcha/fonts/
DREADME1 All fonts placed in this directory will be used randomly for the image captcha.
/plugin/blogtng/action/
Dcomments.php115 $captcha = $this->loadHelper('captcha', false);
/plugin/discussion/
Daction.php1053 $captcha = $this->loadHelper('captcha', false);
1054 if ($captcha && $captcha->isEnabled()) {
1055 echo $captcha->getHTML();
1537 if (plugin_isdisabled('captcha') || (!$captcha = plugin_load('helper', 'captcha')))
1540 if ($captcha->isEnabled() && !$captcha->check()) {
/plugin/glossary/
Dglossary.class.php450 if ($needCaptcha && (!$captcha =& plugin_load ('helper', 'captcha') || !$captcha->check ())) {
529 if ($needCaptcha && $captcha =& plugin_load ('helper', 'captcha'))
530 echo '<tr><td colspan=2>'.$captcha->getHTML ().'</td></tr>'.NL;

12