| 1 |
<?php |
| 2 |
|
| 3 |
namespace FluentCart\App\Modules\IntegrationActions; |
| 4 |
|
| 5 |
class GlobalIntegrationActionHandler |
| 6 |
{ |
| 7 |
public function register() |
| 8 |
{ |
| 9 |
add_action('fluentcart_loaded', [$this, 'init']); |
| 10 |
} |
| 11 |
|
| 12 |
public function init() |
| 13 |
{ |
| 14 |
add_action('init', function () { |
| 15 |
do_action('fluent_cart/register_integration_action'); |
| 16 |
}); |
| 17 |
|
| 18 |
} |
| 19 |
|
| 20 |
public static function getAll() |
| 21 |
{ |
| 22 |
return apply_filters('fluent_cart/integration/get_global_integration_actions', []); |
| 23 |
} |
| 24 |
} |