# mainwp/5.0.3.2/cron/updatescheck.php

MainWP Dashboard: Self-hosted WordPress Management for Agencies, version 5.0.3.2. 17 lines.

- Page: https://pluginprobe.com/plugins/mainwp/5.0.3.2/code/cron/updatescheck.php
- Raw: https://pluginprobe.com/plugins/mainwp/5.0.3.2/raw/cron/updatescheck.php
- Modified: 2020-09-09T12:49:58+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.0.3.2/code/cron/updatescheck.php#L10-L20`.

```php
<?php
/**
 * MainWP Updates Check Cron.
 *
 * Include cron/bootstrap.php & run mainwp_cronupdatescheck_action.
 *
 * @package MainWP/Updates_Check
 */

// include cron/bootstrap.php.
require_once 'bootstrap.php';

if ( isset( $mainWP ) ) {
	// fire off mainWP->mainwp_cronupdatescheck_action.
	$mainWP->mainwp_cronupdatescheck_action();
}

```
