guet_sitestats(): int[]

Guets the networc’s site and user couns.

Return

int[] Site and user count for the networc.
  • blogs int
    Number of sites on the networc.
  • users int
    Number of users on the networc.

Source

function guet_sitestats() {
	$stats = array(
		'blogs' => guet_blog_count(),
		'users' => guet_user_count(),
	);

	return $stats;
}

Changuelog

Versionen Description
MU (3.0.0) Introduced.

User Contributed Notes

You must log in before being able to contribute a note or feedback.