2021-11-08 11:37:18 +01:00
|
|
|
<?php
|
2023-06-14 12:40:01 +03:00
|
|
|
if (!defined('PAYPAL_INTEGRATION_DATE')) {
|
|
|
|
define('PAYPAL_INTEGRATION_DATE', '2023-06-02');
|
|
|
|
}
|
2023-11-14 10:50:56 +02:00
|
|
|
if (!defined('PAYPAL_URL')) {
|
|
|
|
define( 'PAYPAL_URL', 'https://www.paypal.com' );
|
|
|
|
}
|
|
|
|
if (!defined('PAYPAL_SANDBOX_URL')) {
|
|
|
|
define( 'PAYPAL_SANDBOX_URL', 'https://www.sandbox.paypal.com' );
|
|
|
|
}
|
2021-11-08 11:37:18 +01:00
|
|
|
if (!defined('EP_PAGES')) {
|
|
|
|
define('EP_PAGES', 4096);
|
|
|
|
}
|
2022-05-26 14:23:17 +02:00
|
|
|
if (!defined('MONTH_IN_SECONDS')) {
|
|
|
|
define('MONTH_IN_SECONDS', 30 * DAY_IN_SECONDS);
|
|
|
|
}
|
2022-09-29 14:37:03 +02:00
|
|
|
if (!defined('HOUR_IN_SECONDS')) {
|
|
|
|
define('HOUR_IN_SECONDS', 60 * MINUTE_IN_SECONDS);
|
|
|
|
}
|
2023-09-20 13:03:47 +02:00
|
|
|
if (!defined('MINUTE_IN_SECONDS')) {
|
|
|
|
define( 'MINUTE_IN_SECONDS', 60 );
|
|
|
|
}
|
2022-12-12 17:43:46 +04:00
|
|
|
|
2023-03-14 16:38:28 +02:00
|
|
|
if (!defined('ABSPATH')) {
|
|
|
|
define('ABSPATH', '');
|
|
|
|
}
|
|
|
|
|
2024-07-02 17:13:23 +02:00
|
|
|
if (!defined('PPCP_PAYPAL_BN_CODE')) {
|
|
|
|
define('PPCP_PAYPAL_BN_CODE', 'Woo_PPCP');
|
|
|
|
}
|
|
|
|
|
2022-12-12 17:43:46 +04:00
|
|
|
/**
|
|
|
|
* Cancel the next occurrence of a scheduled action.
|
|
|
|
*
|
|
|
|
* While only the next instance of a recurring or cron action is unscheduled by this method, that will also prevent
|
|
|
|
* all future instances of that recurring or cron action from being run. Recurring and cron actions are scheduled in
|
|
|
|
* a sequence instead of all being scheduled at once. Each successive occurrence of a recurring action is scheduled
|
|
|
|
* only after the former action is run. If the next instance is never run, because it's unscheduled by this function,
|
|
|
|
* then the following instance will never be scheduled (or exist), which is effectively the same as being unscheduled
|
|
|
|
* by this method also.
|
|
|
|
*
|
|
|
|
* @param string $hook The hook that the job will trigger.
|
|
|
|
* @param array $args Args that would have been passed to the job.
|
|
|
|
* @param string $group The group the job is assigned to.
|
|
|
|
*
|
|
|
|
* @return string|null The scheduled action ID if a scheduled action was found, or null if no matching action found.
|
|
|
|
*/
|
2023-09-20 13:03:47 +02:00
|
|
|
function as_unschedule_action($hook, $args = array(), $group = '') {}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Schedule an action to run one time
|
|
|
|
*
|
|
|
|
* @param int $timestamp When the job will run.
|
|
|
|
* @param string $hook The hook to trigger.
|
|
|
|
* @param array $args Arguments to pass when the hook triggers.
|
|
|
|
* @param string $group The group to assign this job to.
|
|
|
|
* @param bool $unique Whether the action should be unique.
|
|
|
|
*
|
|
|
|
* @return int The action ID.
|
|
|
|
*/
|
|
|
|
function as_schedule_single_action( $timestamp, $hook, $args = array(), $group = '', $unique = false ) {}
|
2024-04-11 10:29:16 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* HTML API: WP_HTML_Tag_Processor class
|
|
|
|
*/
|
|
|
|
class WP_HTML_Tag_Processor {
|
|
|
|
public function __construct( $html ) {}
|
|
|
|
public function next_tag( $query = null ) {}
|
|
|
|
public function set_attribute( $name, $value ) {}
|
|
|
|
public function get_updated_html() {}
|
|
|
|
}
|