You are here

function popup_onload_sort_method_random in Popup On Load 7

Same name and namespace in other branches
  1. 8 popup_onload.module \popup_onload_sort_method_random()

Callback of the popup sorting method.

Return value

object Fully loaded popup_onload entity.

See also

hook_popup_onload_sort_methods()

1 string reference to 'popup_onload_sort_method_random'
popup_onload.module in ./popup_onload.module
Contains main popup_onload hooks and functions.

File

./popup_onload.module, line 158
Contains main popup_onload hooks and functions.

Code

function popup_onload_sort_method_random() {
  $popups = popup_onload_get_popups_all();
  return !empty($popups) ? $popups[array_rand($popups)] : NULL;
}