You are here

function popup_get_ahah in Popup 7

Same name and namespace in other branches
  1. 8 includes/popup.util.inc \popup_get_ahah()
  2. 7.x includes/popup.util.inc \popup_get_ahah()
  3. 6.x includes/popup.util.inc \popup_get_ahah()
1 string reference to 'popup_get_ahah'
popup_menu in ./popup.module
Implementation of hook_menu

File

includes/popup.util.inc, line 404

Code

function popup_get_ahah($type, $attr_hash = '') {
  module_load_include('inc', 'popup', 'includes/popup.api');
  $attributes = popup_cache_attributes($attr_hash);
  $function = '_popup_' . $type;
  print $function($attributes, 'body');
  exit;
}