{eac}Doojigger Reference

security_extension extends abstract_extension

Extension: security - security features - {eac}Doojigger for WordPress

Tags
category

WordPress Plugin

author

Kevin Burkholder KBurkholder@EarthAsylum.com

copyright

Copyright (c) 2024 EarthAsylum Consulting <www.EarthAsylum.com>

Table of Contents

ALIAS  = null
ALLOW_ADMIN  = 0b1
ALLOW_ALL  = self::ALLOW_ADMIN | self::ALLOW_NETWORK | self::ALLOW_CRON | self::ALLOW_CLI
ALLOW_CLI  = 0b10000
ALLOW_CRON  = 0b1000
ALLOW_NETWORK  = 0b100
ALLOW_NON_PHP  = 0b1000000
DEFAULT_DISABLED  = 0b100000
ONLY_ADMIN  = 0b10
VERSION  = '24.0906.1'
__call()  : mixed
magic method to call plugin or extension methods
__construct()  : void
constructor method
__destruct()  : void
destructor method
__get()  : mixed
magic method to call parent plugin __get()
addActionsAndFilters()  : void
Add filters and actions - called from main plugin
addShortcodes()  : void
Add extension shortcodes
admin_options_help()  : void
Add help tab on admin page
admin_options_settings()  : void
register options on options_settings_page
block_ip_address()  : void
block ip/host address
checkCookieFlags()  : void
set flags in Set-Cookie headers before output (used by header_register_callback)
disable_code_edit()  : void
disable code editor
disable_code_edit_error()  : void
DISALLOW_FILE_EDIT was already set
disable_file_mods()  : void
disable file mods
disable_file_mods_error()  : void
DISALLOW_FILE_MODS was already set
disable_rest()  : WP_Error
disable un-authenticated REST API
disable_rest_core()  : void
disable WP Core REST API
disable_rest_list()  : void
disable REST API index/list
disable_rss_feeds()  : void
disable rss feeds
disable_rss_response()  : void
disable rss feeds
disable_uris()  : void
disable uri
disable_xml()  : void|array<string|int, mixed>
disable xml-rpc
getAlias()  : const
get the extension alias
getClassName()  : bool
getClassName - get the class/extension name without namespace
getVersion()  : const
get the extension version
initialize()  : void
initialize method - called from main plugin
is_network_enabled()  : bool
is_network_enabled - set or test extension enabled for use at the network level
is_network_option()  : bool|mixed
is this class network enabled and does option match a value
isEnabled()  : bool
isEnabled - set or test extension enabled for use
isNetworkPolicy()  : bool
is network option set
isPolicyEnabled()  : bool
is site or network option set
mergePolicies()  : mixed
merge site and network policies
options_form_post_secBlockIP()  : mixed
filter for options_form_post_secBlockIP
options_form_post_secCookies()  : mixed
filter for options_form_post_secCookies
options_form_post_secDisableURIs()  : mixed
filter for options_form_post_secDisableURIs
options_form_post_secLoginUri()  : mixed
filter for options_form_post_secLoginUri
options_form_post_secPassLock()  : mixed
filter for options_form_post_secPassLock
options_form_post_secPassTime()  : mixed
filter for options_form_post_secPassTime
rest_api_cors()  : WP_Error
Set origin-specific CORS headers (rest_api_init -> rest_pre_serve_request)
set_hearttbeat()  : array<string|int, mixed>
heartbeat_settings
validate_authentication_attempts()  : WP_Error
validate authentication attempts
validate_password_policy()  : WP_Error
validate password policy
welcome_email_filter()  : string
welcome email filter
wp_login_filter()  : string
wp_login filter
wp_login_init()  : void
wp_login init action
wp_login_notice()  : void
wp_login notice
wp_login_redirect()  : void
wp_login redirect action

Constants

ALLOW_ALL

public mixed ALLOW_ALL = self::ALLOW_ADMIN | self::ALLOW_NETWORK | self::ALLOW_CRON | self::ALLOW_CLI

Methods

__call()

magic method to call plugin or extension methods

public __call(mixed $method, mixed $arguments) : mixed
Parameters
$method : mixed

the method name or [extension,method]

$arguments : mixed

the arguments to method name

Return values
mixed

result of method called

__construct()

constructor method

public __construct(object $plugin) : void
Parameters
$plugin : object

main plugin object

Return values
void

__get()

magic method to call parent plugin __get()

public __get(string $property) : mixed
Parameters
$property : string

the property name or extension name

Return values
mixed

result of plugin __get()

addActionsAndFilters()

Add filters and actions - called from main plugin

public addActionsAndFilters() : void
Return values
void

addShortcodes()

Add extension shortcodes

public addShortcodes() : void

Called after loading, instantiating, and initializing all extensions

Return values
void

admin_options_help()

Add help tab on admin page

public admin_options_help() : void
Tags
todo
  • add contextual help
Return values
void

admin_options_settings()

register options on options_settings_page

public admin_options_settings() : void
Tags
access

public

Return values
void

checkCookieFlags()

set flags in Set-Cookie headers before output (used by header_register_callback)

public checkCookieFlags() : void
Return values
void

disable_code_edit_error()

DISALLOW_FILE_EDIT was already set

public disable_code_edit_error() : void
Return values
void

disable_file_mods_error()

DISALLOW_FILE_MODS was already set

public disable_file_mods_error() : void
Return values
void

disable_rest()

disable un-authenticated REST API

public disable_rest(mixed $authError) : WP_Error
Parameters
$authError : mixed
Return values
WP_Error

disable_rest_list()

disable REST API index/list

public disable_rest_list(mixed $response) : void
Parameters
$response : mixed
Return values
void

disable_xml()

disable xml-rpc

public disable_xml() : void|array<string|int, mixed>
Return values
void|array<string|int, mixed>
  • empty array of xmlrpc methods

getClassName()

getClassName - get the class/extension name without namespace

public getClassName([object $class = null ]) : bool
Parameters
$class : object = null

optional class object

Return values
bool

getVersion()

get the extension version

public getVersion() : const
Return values
const

VERSION string

initialize()

initialize method - called from main plugin

public initialize() : void
Return values
void

is_network_enabled()

is_network_enabled - set or test extension enabled for use at the network level

public is_network_enabled() : bool
Return values
bool

is_network_option()

is this class network enabled and does option match a value

public is_network_option(string $optionName[, mixed $value = null ]) : bool|mixed
Parameters
$optionName : string

option name

$value : mixed = null

check this value

Return values
bool|mixed

option is set and has value

isEnabled()

isEnabled - set or test extension enabled for use

public isEnabled([bool|string $enabled = null ][, bool $perm = null ]) : bool
Parameters
$enabled : bool|string = null

true|false or other extension name

$perm : bool = null

optional, to permanently set enabled option

Return values
bool

isNetworkPolicy()

is network option set

public isNetworkPolicy(string $optionName) : bool
Parameters
$optionName : string
  • policy/option name
Return values
bool

isPolicyEnabled()

is site or network option set

public isPolicyEnabled(string $optionName[, string $value = null ]) : bool
Parameters
$optionName : string
  • policy/option name
$value : string = null
  • check for specific value
Return values
bool

mergePolicies()

merge site and network policies

public mergePolicies(string $optionName[, mixed $default = [] ][, bool $getPost = false ]) : mixed
Parameters
$optionName : string
  • policy/option name
$default : mixed = []
  • default value & type returned
$getPost : bool = false
  • POSTed values
Return values
mixed

options_form_post_secBlockIP()

filter for options_form_post_secBlockIP

public options_form_post_secBlockIP(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

options_form_post_secCookies()

filter for options_form_post_secCookies

public options_form_post_secCookies(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

options_form_post_secDisableURIs()

filter for options_form_post_secDisableURIs

public options_form_post_secDisableURIs(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

options_form_post_secLoginUri()

filter for options_form_post_secLoginUri

public options_form_post_secLoginUri(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

options_form_post_secPassLock()

filter for options_form_post_secPassLock

public options_form_post_secPassLock(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

options_form_post_secPassTime()

filter for options_form_post_secPassTime

public options_form_post_secPassTime(mixed $value, string $fieldName, array<string|int, mixed> $metaData, mixed $priorValue) : mixed
Parameters
$value : mixed
  • the value POSTed
$fieldName : string
  • the name of the field/option
$metaData : array<string|int, mixed>
  • the option metadata
$priorValue : mixed
  • the previous value
Return values
mixed

$value

rest_api_cors()

Set origin-specific CORS headers (rest_api_init -> rest_pre_serve_request)

public rest_api_cors() : WP_Error
Return values
WP_Error

or $user

set_hearttbeat()

heartbeat_settings

public set_hearttbeat(mixed $options) : array<string|int, mixed>
Parameters
$options : mixed
Return values
array<string|int, mixed>

heartbeat parameters (interval set)

validate_authentication_attempts()

validate authentication attempts

public validate_authentication_attempts( $user, mixed ...$args) : WP_Error
Parameters
$user :

user data

$args : mixed
Return values
WP_Error

or $user

validate_password_policy()

validate password policy

public validate_password_policy(WP_Error $wpErrors, mixed ...$args) : WP_Error
Parameters
$wpErrors : WP_Error
$args : mixed
Return values
WP_Error

welcome_email_filter()

welcome email filter

public welcome_email_filter(string $content) : string
Parameters
$content : string

email message content

Return values
string

wp_login_filter()

wp_login filter

public wp_login_filter(string $url, string $path, string $scheme[, mixed $blogId = null ]) : string
Parameters
$url : string

complete url

$path : string

path of url

$scheme : string

http|https

$blogId : mixed = null
Return values
string

url

wp_login_notice()

wp_login notice

public wp_login_notice([ $newLogin = null ]) : void
Parameters
$newLogin : = null

new login url or ''

Return values
void

wp_login_redirect()

wp_login redirect action

public wp_login_redirect(mixed $location) : void
Parameters
$location : mixed
Return values
void

Search results