function add_to_head_profile_load in Add To Head 6
Same name and namespace in other branches
- 7 add_to_head.module \add_to_head_profile_load()
Argument load handler for %add_to_head_profile URL placeholders
File
- ./
add_to_head.module, line 77 - Add To Head allows abritrary insertion of code into the head of the page based on path selection.
Code
function add_to_head_profile_load($arg) {
$settings = variable_get('add_to_head_profiles', array());
return isset($settings[$arg]) ? $settings[$arg] : FALSE;
}