function popup_popup_attributes_alter in Popup 7
Same name and namespace in other branches
- 7.x popup.module \popup_popup_attributes_alter()
Implementation of hook_popup_attributes_alter to provide defaults
File
- ./
popup.module, line 248
Code
function popup_popup_attributes_alter(&$attributes) {
module_load_include('inc', 'popup', 'includes/popup.util');
$defaults = _popup_defaults();
$attributes = array_merge($defaults, $attributes);
}