| 1 |
<?php |
| 2 |
|
| 3 |
require_once dirname( __FILE__ ) . '/class.json-api-platform.php'; |
| 4 |
|
| 5 |
class WPORG_Platform extends SAL_Platform { |
| 6 |
public function get_site( $blog_id ) { |
| 7 |
require_once dirname( __FILE__ ) . '/class.json-api-site-jetpack.php'; |
| 8 |
return new Jetpack_Site( $blog_id, $this ); |
| 9 |
} |
| 10 |
} |
| 11 |
|
| 12 |
function wpcom_get_sal_platform( $token ) { |
| 13 |
return new WPORG_Platform( $token ); |
| 14 |
} |
| 15 |
|