summaryrefslogtreecommitdiff
blob: c059b5524f4f48da0bcfb2dd147a6e00e6d634e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<?php

class WPORG_Platform {
	static function get_site( $blog_id ) {
		require_once dirname( __FILE__ ) . '/class.json-api-site-jetpack.php';
		return new Jetpack_Site( $blog_id );
	}
}

function wpcom_get_sal_site( $blog_id ) {
	return WPORG_Platform::get_site( $blog_id );
}