mailpoet
/
vendor
/
woocommerce
/
action-scheduler
/
deprecated
/
ActionScheduler_Store_Deprecated.php
ActionScheduler_Abstract_QueueRunner_Deprecated.php
1 year ago
ActionScheduler_AdminView_Deprecated.php
1 year ago
ActionScheduler_Schedule_Deprecated.php
1 year ago
ActionScheduler_Store_Deprecated.php
4 years ago
functions.php
1 year ago
index.php
3 years ago
ActionScheduler_Store_Deprecated.php
19 lines
| 1 | <?php |
| 2 | if (!defined('ABSPATH')) exit; |
| 3 | abstract class ActionScheduler_Store_Deprecated { |
| 4 | public function mark_failed_fetch_action( $action_id ) { |
| 5 | _deprecated_function( __METHOD__, '3.0.0', 'ActionScheduler_Store::mark_failure()' ); |
| 6 | self::$store->mark_failure( $action_id ); |
| 7 | } |
| 8 | protected static function hook() { |
| 9 | _deprecated_function( __METHOD__, '3.0.0' ); |
| 10 | } |
| 11 | protected static function unhook() { |
| 12 | _deprecated_function( __METHOD__, '3.0.0' ); |
| 13 | } |
| 14 | protected function get_local_timezone() { |
| 15 | _deprecated_function( __FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()' ); |
| 16 | return ActionScheduler_TimezoneHelper::get_local_timezone(); |
| 17 | } |
| 18 | } |
| 19 |