PluginProbe
Force Refresh / 3.2.0
Force Refresh v3.2.0
3.2.1 3.2.0 3.1.2 3.1.1 3.1.0 trunk 1.0.0 1.1.0 1.1.1 1.1.2 1.2.0 2.0.0 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.10.0 2.10.1 2.10.2 2.11.0 2.11.1 2.12.0 All 54 releases
force-refresh / includes / actions / actions.php

actions.php in Force Refresh 3.2.0, at includes/actions/actions.php

16 lines 384 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * All of our package actions to register.
4 *
5 * @package ForceRefresh
6 */
7
8 namespace JordanLeven\Plugins\ForceRefresh;
9
10 use JordanLeven\Plugins\ForceRefresh\Services\Migration_Service;
11
12 add_action( 'plugins_loaded', array( Migration_Service::class, 'run_pending' ) );
13
14 require_once __DIR__ . '/admin/actions-admin.php';
15 require_once __DIR__ . '/client/actions-client.php';
16