module );
Jetpack::module_configuration_load( $this->module, array( $this, 'jetpack_configuration_load' ) );
Jetpack::module_configuration_screen( $this->module, array( $this, 'jetpack_configuration_screen' ) );
}
public function jetpack_configuration_load() {
if ( Jetpack::is_user_connected() && ! self::is_active() ) {
Jetpack::deactivate_module( $this->module );
Jetpack::state( 'message', 'module_deactivated' );
wp_safe_redirect( Jetpack::admin_url( 'page=jetpack' ) );
die();
}
if ( ! empty( $_POST['action'] ) && $_POST['action'] == 'monitor-save' ) {
check_admin_referer( 'monitor-settings' );
$this->update_option_receive_jetpack_monitor_notification( isset( $_POST['receive_jetpack_monitor_notification'] ) );
Jetpack::state( 'message', 'module_configured' );
wp_safe_redirect( Jetpack::module_configuration_url( $this->module ) );
}
}
public function jetpack_configuration_screen() {
?>
get_current_user_id()
) );
$xml->query( 'jetpack.monitor.isActive' );
if ( $xml->isError() ) {
wp_die( sprintf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() ) );
}
return $xml->getResponse();
}
public function update_option_receive_jetpack_monitor_notification( $value ) {
Jetpack::load_xml_rpc_client();
$xml = new Jetpack_IXR_Client( array(
'user_id' => get_current_user_id()
) );
$xml->query( 'jetpack.monitor.setNotifications', (bool) $value );
if ( $xml->isError() ) {
wp_die( sprintf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() ) );
}
return true;
}
public function user_receives_notifications() {
Jetpack::load_xml_rpc_client();
$xml = new Jetpack_IXR_Client( array(
'user_id' => get_current_user_id()
) );
$xml->query( 'jetpack.monitor.isUserInNotifications' );
if ( $xml->isError() ) {
wp_die( sprintf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() ) );
}
return $xml->getResponse();
}
public function activate_monitor() {
Jetpack::load_xml_rpc_client();
$xml = new Jetpack_IXR_Client( array(
'user_id' => get_current_user_id()
) );
$xml->query( 'jetpack.monitor.activate' );
if ( $xml->isError() ) {
wp_die( sprintf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() ) );
}
return true;
}
public function deactivate_monitor() {
Jetpack::load_xml_rpc_client();
$xml = new Jetpack_IXR_Client( array(
'user_id' => get_current_user_id()
) );
$xml->query( 'jetpack.monitor.deactivate' );
if ( $xml->isError() ) {
wp_die( sprintf( '%s: %s', $xml->getErrorCode(), $xml->getErrorMessage() ) );
}
return true;
}
/*
* Returns date of the last downtime.
*
* @since 4.0.0
* @return date in YYYY-MM-DD HH:mm:ss format
*/
public function monitor_get_last_downtime() {
Jetpack::load_xml_rpc_client();
$xml = new Jetpack_IXR_Client( array(
'user_id' => get_current_user_id()
) );
$xml->query( 'jetpack.monitor.getLastDowntime' );
if ( $xml->isError() ) {
return new WP_Error( 'monitor-downtime', $xml->getErrorMessage() );
}
return $xml->getResponse();
}
}
new Jetpack_Monitor;