AbstractHtmlProcessor::createRawDomDocument() – Creates a DOMDocument instance from the given HTML and stores it in $this->domDocument.
AbstractHtmlProcessor::createUnifiedDomDocument() – Creates a DOM document from the given HTML and stores it in $this->domDocument.
AbstractProductGrid::get_schema_content_visibility() – Get the schema for the contentVisibility attribute
AbstractRoute::check_nonce() – For non-GET endpoints, require and validate a nonce to prevent CSRF attacks.
AbstractRoute::maybe_load_cart() – Makes the cart and sessions available to a route by loading them from core.
AbstractRoute::prepare_response_for_collection() – Prepares a response for insertion into a collection.
AbstractSchema::get_store_currency_properties() – Returns consistent currency schema used across endpoints for prices.
AbstractSchema::get_store_currency_response() – Prepares a list of store currency data to return in responses.
AbstractServiceProvider::reflect_class_or_callable() – Check if a combination of class name and concrete is valid for registration.
ActionScheduler_Abstract_ListTable::column_cb() – Renders the checkbox for each row, this is the first column and it is named ID regardless of how the primary key is named (to keep the code simpler). The bulk actions will do the proper name transformation though using `$this->ID`.
ActionScheduler_Abstract_ListTable::column_default() – Default column formatting, it will escape everything for security.
ActionScheduler_Abstract_ListTable::get_columns() – Returns the columns names for rendering. It adds a checkbox for selecting everything as the first column
ActionScheduler_Abstract_ListTable::prepare_column_headers() – Prepares the _column_headers property which is used by WP_Table_List at rendering.
ActionScheduler_Abstract_Schedule::calculate_next() – Calculate when the next instance of this schedule would run based on a given date & time.
ActionScheduler_ActionFactory::cron() – Create the first instance of an action recurring on a Cron schedule.
ActionScheduler_AdminView_Deprecated::custom_orderby() – Filter search queries to allow searching by Claim ID (i.e. post_password).
ActionScheduler_CanceledSchedule::__wakeup() – Unserialize recurring schedules serialized/stored prior to AS 3.0.0
ActionScheduler_CanceledSchedule::get_next() – Cancelled actions should never have a next schedule, even if get_next() is called with $after < $this->scheduled_date.
ActionScheduler_Compatibility::convert_hr_to_bytes() – Converts a shorthand byte value to an integer byte value.
ActionScheduler_Compatibility::raise_memory_limit() – Attempts to raise the PHP memory limit for memory intensive processes.
ActionScheduler_Compatibility::raise_time_limit() – Attempts to raise the PHP timeout for time intensive processes.
ActionScheduler_CronSchedule::__construct() – Wrapper for parent constructor to accept a cron expression string and map it to a CronExpression for this objects $recurrence property.
ActionScheduler_CronSchedule::__sleep() – Serialize cron schedules with data required prior to AS 3.0.0
ActionScheduler_CronSchedule::__wakeup() – Unserialize cron schedules serialized/stored prior to AS 3.0.0
ActionScheduler_CronSchedule::calculate_next() – Calculate when an instance of this schedule would start based on a given date & time using its the CronExpression.
ActionScheduler_DataController::is_migration_complete() – Get a flag indicating whether the migration is complete.
ActionScheduler_DBLogger::create_entry_from_db_record() – Create an action log entry from a database record.
ActionScheduler_DBStore::action_counts() – Get a count of all actions in the store, grouped by status.
ActionScheduler_DBStore::get_claim_id() – Return an action’s claim ID, as stored in the claim_id column.
ActionScheduler_HybridStore::action_counts() – Get a count of all actions in the store, grouped by status
ActionScheduler_HybridStore::get_claim_id() – Retrieve the claim ID for an action from the table data store.
ActionScheduler_HybridStore::mark_complete() – Mark an existing action complete whether migrated or not.
ActionScheduler_HybridStore::stake_claim() – If any actions would have been claimed by the secondary store, migrate them immediately, then ask the primary store for the canonical claim.
ActionScheduler_IntervalSchedule::calculate_next() – Calculate when this schedule should start after a given date & time using the number of seconds between recurrences.
ActionScheduler_ListTable::__construct() – Sets the current data store object into `store->action` and initialises the object.
ActionScheduler_ListTable::column_args() – Serializes the argument of an action to render it in a human friendly format.
ActionScheduler_ListTable::column_log_entries() – Prints the logs entries inline. We do so to avoid loading Javascript and other hacks to show it in a modal.
ActionScheduler_ListTable::row_action_cancel() – Implements the logic behind running an action. ActionScheduler_Abstract_ListTable validates the request and their parameters are valid.
ActionScheduler_QueueRunner::clear_caches() – Running large batches can eat up memory, as WP adds data to its object cache.