# mainwp/5.2.2/cron/backups_continue.php

MainWP Dashboard: Self-hosted WordPress Management for Agencies, version 5.2.2. 15 lines.

- Page: https://pluginprobe.com/plugins/mainwp/5.2.2/code/cron/backups_continue.php
- Raw: https://pluginprobe.com/plugins/mainwp/5.2.2/raw/cron/backups_continue.php
- Modified: 2024-06-18T12:15:46+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/mainwp/5.2.2/code/cron/backups_continue.php#L10-L20`.

```php
<?php
/**
 * MainWP Backups Continue Cron.
 *
 * Include cron/bootstrap.php & run mainwp_cronbackups_continue_action.
 *
 * @package MainWP/Backups_Continue
 */

// include cron/bootstrap.php.
require_once 'bootstrap.php'; // NOSONAR - WP compatible.

// fire off mainWP->mainwp_cronbackups_continue_action.
$mainWP->mainwp_cronbackups_continue_action();

```
