Bootstrap file for this plugin. More...
Functions | |
osolAutoLoadRegisterCalled () | |
Dummy function to mention spl_autoload_register(function ($class) is called. After registering this autoload function with SPL, the following line would cause the function to attempt to load the \Foo\Bar\Baz\Qux class from /path/to/project/src/Baz/Qux.php: More... | |
osolwpccc_custom_javascript () | |
Variables | |
const | CUST_CAPTCHA_FOLDER dirname(__FILE__) |
constant holding file path of this plugin. More... | |
const | CUST_CAPTCHA_MVC_ROOT_FOLDER dirname(__FILE__)."/MVC" |
constant holding file root of MVC(private folder) this plugin. More... | |
const | CUST_CAPTCHA_DIR_URL plugin_dir_url(__FILE__) |
$OSOLCCC_Frontend_inst = \OSOLCCC\Hooks\Frontend::getInstance() | |
$OSOLCCC_Admin_inst = \OSOLCCC\Hooks\Admin::getInstance() | |
$OSOLCCC_CommonClass_inst = \OSOLCCC\Hooks\Common::getInstance() | |
$GLOBALS ['OSOLMulticaptcha_captcha_enabled'] = get_option('cust_captcha_status') | |
Determines wether captcha is enabled, ie to be shown in forms. More... | |
$GLOBALS ['OSOLMulticaptcha_gdprCompliantNoCookie'] = get_option('OSOLMulticaptcha_gdprCompliantNoCookie') | |
Determines wether captcha should be based on session/cookie(default) or GDPR Compliant. More... | |
$login_captcha = get_option('OSOLMulticaptcha_cust_captcha_login') | |
Determines wether captcha is enabled in login form. More... | |
$comment_captcha = get_option('OSOLMulticaptcha_cust_captcha_comments') | |
Determines wether captcha is enabled in comment form. More... | |
$register_captcha = get_option('OSOLMulticaptcha_cust_captcha_register') | |
Determines wether captcha is enabled in sign up form. More... | |
$lost_captcha = get_option('OSOLMulticaptcha_cust_captcha_lost') | |
Determines wether captcha is enabled in loas password form. More... | |
Bootstrap file for this plugin.
Starting point of the project.
This file bootstraps the operations of this project
This documentation is shown because file tag is used.
This will appear under Main Project >> Files >> File List >> thisFileName
add_filter hooks
osolAutoLoadRegisterCalled | ( | ) |
Dummy function to mention spl_autoload_register(function ($class) is called. After registering this autoload function with SPL, the following line would cause the function to attempt to load the \Foo\Bar\Baz\Qux class from /path/to/project/src/Baz/Qux.php:
new \Foo\Bar\Baz\Qux;
function | Function that maps called classes to appropriate source files. |
std::fileNotFound | No such file check the spelling of {$class}. |
$comment_captcha = get_option('OSOLMulticaptcha_cust_captcha_comments') |
Determines wether captcha is enabled in comment form.
It is set in admin panel, in "Captcha Settings"
$GLOBALS[ 'OSOLMulticaptcha_captcha_enabled'] = get_option('cust_captcha_status') |
Determines wether captcha is enabled, ie to be shown in forms.
It is set in admin panel, in "Captcha Settings"
$GLOBALS[ 'OSOLMulticaptcha_gdprCompliantNoCookie'] = get_option('OSOLMulticaptcha_gdprCompliantNoCookie') |
Determines wether captcha should be based on session/cookie(default) or GDPR Compliant.
It is set in admin panel, in "Captcha Settings"
$login_captcha = get_option('OSOLMulticaptcha_cust_captcha_login') |
Determines wether captcha is enabled in login form.
It is set in admin panel, in "Captcha Settings"
$lost_captcha = get_option('OSOLMulticaptcha_cust_captcha_lost') |
Determines wether captcha is enabled in loas password form.
It is set in admin panel, in "Captcha Settings"
if($GLOBALS['OSOLMulticaptcha_captcha_enabled']=='enabled' &&($login_captcha=='yes')) if ( $GLOBALS[ 'OSOLMulticaptcha_captcha_enabled']=='enabled' &&( $comment_captcha=='yes')) $register_captcha = get_option('OSOLMulticaptcha_cust_captcha_register') |
Determines wether captcha is enabled in sign up form.
It is set in admin panel, in "Captcha Settings"
const CUST_CAPTCHA_FOLDER dirname(__FILE__) |
constant holding file path of this plugin.
this constant is defined for ease of usage in all classes.
This is used in autoloader and for loading template files
const CUST_CAPTCHA_MVC_ROOT_FOLDER dirname(__FILE__)."/MVC" |
constant holding file root of MVC(private folder) this plugin.
this constant is defined for ease of usage in all classes.
This is used in autoloader and for loading template files