You are here

function _popup_styles in Popup 7

Same name and namespace in other branches
  1. 8 includes/popup.util.inc \_popup_styles()
  2. 7.x includes/popup.util.inc \_popup_styles()
  3. 6.x includes/popup.util.inc \_popup_styles()

Returns all popup styles provided by all modules

6 calls to _popup_styles()
popupformat_features_export in modules/popup_ui/includes/popup_ui.features.inc
Implementation of [component]_features_export()
popup_admin_settings in includes/popup.admin.inc
Popup administration settings form
popup_preprocess_popup_element in ./popup.module
Popup element preprocessor
popup_test_styles in modules/popup_test/includes/popup_test.pages.inc
Popup test activation page
popup_theme in ./popup.module
Implementation of hook_theme

... See full list

File

includes/popup.util.inc, line 37

Code

function _popup_styles() {
  static $all_styles = FALSE;
  if ($all_styles) {
    return $all_styles;
  }
  $all_styles = module_invoke_all('popup_styles');
  ksort($all_styles);
  return $all_styles;
}