PluginProbe
MainWP Dashboard: Self-hosted WordPress Management for Agencies / 6.1.4
MainWP Dashboard: Self-hosted WordPress Management for Agencies v6.1.4
6.2 6.1.8 6.1.7 6.1.6 6.1.5 6.1.4 6.1.3 6.1.2 6.1.1 6.1 6.0.12 6.0.11 4.6.0.1 5.0 5.0.1 5.0.2 5.0.3 5.0.3.1 5.0.3.2 5.1 5.1.1 5.2 5.2.1 5.2.2 5.3 All 153 releases
mainwp / cron / backups_continue.php

backups_continue.php in MainWP Dashboard: Self-hosted WordPress Management for Agencies 6.1.4, at cron/backups_continue.php

20 lines 430 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * MainWP Backups Continue Cron.
4 *
5 * Include cron/bootstrap.php & run mainwp_cronbackups_continue_action.
6 *
7 * @package MainWP/Backups_Continue
8 */
9
10 // include cron/bootstrap.php.
11 require_once 'bootstrap.php'; // NOSONAR - WP compatible.
12
13 // Exit if accessed directly.
14 if ( ! defined( 'ABSPATH' ) ) {
15 exit;
16 }
17
18 // fire off mainWP->mainwp_cronbackups_continue_action.
19 $mainWP->mainwp_cronbackups_continue_action();
20