Code Duplication    Length = 15-15 lines in 2 locations

class.jetpack.php 1 location

@@ 1390-1404 (lines=15) @@
1387
	 * @since  3.3
1388
	 * @return boolean
1389
	 */
1390
	public static function is_multi_network() {
1391
		global  $wpdb;
1392
1393
		// if we don't have a multi site setup no need to do any more
1394
		if ( ! is_multisite() ) {
1395
			return false;
1396
		}
1397
1398
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
1399
		if ( $num_sites > 1 ) {
1400
			return true;
1401
		} else {
1402
			return false;
1403
		}
1404
	}
1405
1406
	/**
1407
	 * Trigger an update to the main_network_site when we update the siteurl of a site.

packages/status/src/Status.php 1 location

@@ 52-66 (lines=15) @@
49
	 *
50
	 * @return boolean
51
	 */
52
	public function is_multi_network() {
53
		global $wpdb;
54
55
		// if we don't have a multi site setup no need to do any more
56
		if ( ! is_multisite() ) {
57
			return false;
58
		}
59
60
		$num_sites = $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->site}" );
61
		if ( $num_sites > 1 ) {
62
			return true;
63
		}
64
65
		return false;
66
	}
67
}
68