├── .gitignore ├── README.markdown ├── docs └── en │ └── readme.txt ├── images └── admin.png ├── lib ├── Captcha │ ├── Api │ │ └── Admin.php │ ├── Controller │ │ └── Admin.php │ ├── HookHandlers.php │ ├── Installer.php │ └── Version.php └── vendor │ └── google │ └── recaptcha │ ├── LICENSE │ ├── README.md │ └── recaptchalib.php ├── locale └── module_captcha.pot └── templates ├── admin └── modifyconfig.tpl └── hooks └── edit.tpl /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/.gitignore -------------------------------------------------------------------------------- /README.markdown: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/README.markdown -------------------------------------------------------------------------------- /docs/en/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/docs/en/readme.txt -------------------------------------------------------------------------------- /images/admin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/images/admin.png -------------------------------------------------------------------------------- /lib/Captcha/Api/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/Captcha/Api/Admin.php -------------------------------------------------------------------------------- /lib/Captcha/Controller/Admin.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/Captcha/Controller/Admin.php -------------------------------------------------------------------------------- /lib/Captcha/HookHandlers.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/Captcha/HookHandlers.php -------------------------------------------------------------------------------- /lib/Captcha/Installer.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/Captcha/Installer.php -------------------------------------------------------------------------------- /lib/Captcha/Version.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/Captcha/Version.php -------------------------------------------------------------------------------- /lib/vendor/google/recaptcha/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/vendor/google/recaptcha/LICENSE -------------------------------------------------------------------------------- /lib/vendor/google/recaptcha/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/vendor/google/recaptcha/README.md -------------------------------------------------------------------------------- /lib/vendor/google/recaptcha/recaptchalib.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/lib/vendor/google/recaptcha/recaptchalib.php -------------------------------------------------------------------------------- /locale/module_captcha.pot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/locale/module_captcha.pot -------------------------------------------------------------------------------- /templates/admin/modifyconfig.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/templates/admin/modifyconfig.tpl -------------------------------------------------------------------------------- /templates/hooks/edit.tpl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/craigh/Captcha/HEAD/templates/hooks/edit.tpl --------------------------------------------------------------------------------