wpseek.com
A WordPress-centric search engine for devs and theme authors



_get_cron_array › WordPress Function

Since2.1.0
Deprecatedn/a
_get_cron_array ( No parameters )
Access:
  • private
Returns:
  • () array<int, array<string, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>>>|array{} Array of cron events.
Defined at:
Codex:
Change Log:
  • 6.1.0

Retrieves cron info array option.



Source

function _get_cron_array() {
	$cron = get_option( 'cron' );
	if ( ! is_array( $cron ) ) {
		return array();
	}

	/**
	 * @var array{ version: int, ...<int, array<string, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>>> }
	 *     |array<int, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>> $cron
	 */
	if ( ! isset( $cron['version'] ) ) {
		$cron = _upgrade_cron_array( $cron );
	}

	unset( $cron['version'] );

	/** @var array<int, array<string, array<string, array{ schedule: string|false, args: array<mixed>, interval?: non-negative-int }>>> $cron */
	return $cron;
}