haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
wp-all-export-pro
/
src
/
Scheduling
/
Filename :
Connection.php
back
Copy
<?php namespace Wpae\Scheduling; class Connection { public function checkConnection() { $response = wp_remote_request( $this->getApiUrl('connection'), array( 'method' => 'GET', 'body' => \json_encode(array(get_site_url('/wp-load.php'))) ) ); if($response instanceof \WP_Error) { return false; } if ($response['response']['code'] == 200) { return true; } else { return false; } } }