get_other_linked_admins() static public method

Checks to see if there are any other users available to become primary Users must both: - Be linked to wpcom - Be an admin
static public get_other_linked_admins ( ) : mixed
return mixed False if no other users are linked, Int if there are.
Esempio n. 1
0
 function test_other_linked_admins_transient_set_to_zero_returns_false()
 {
     set_transient('jetpack_other_linked_admins', 0, HOUR_IN_SECONDS);
     $this->assertFalse(Jetpack::get_other_linked_admins());
 }