You are here

function add_to_head_profile_load in Add To Head 7

Same name and namespace in other branches
  1. 6 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 83
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;
}