You appear to be a bot. Output may be restricted
Description
Usage
Jetpack_Autoupdate::__construct();
Parameters
Returns
void
Source
File name: jetpack/class.jetpack-autoupdate.php
Lines:
1 to 11 of 11
private function __construct() { if ( /** This filter is documented in class.jetpack-json-api-endpoint.php */ apply_filters( 'jetpack_json_manage_api_enabled', true ) ) { add_filter( 'auto_update_theme', array( $this, 'autoupdate_theme' ), 10, 2 ); add_filter( 'auto_update_core', array( $this, 'autoupdate_core' ), 10, 2 ); add_filter( 'auto_update_translation', array( $this, 'autoupdate_translation' ), 10, 2 ); add_action( 'automatic_updates_complete', array( $this, 'automatic_updates_complete' ), 999, 1 ); } }