function dfp_context_registry in Doubleclick for Publishers (DFP) 7.2
Same name and namespace in other branches
- 7 dfp.module \dfp_context_registry()
Implements hook_context_registry().
1 call to dfp_context_registry()
- dfp_dfp_tag_load_alter in ./
dfp.module - Alter a dfp tag object to integrate with the contexts module.
File
- ./
dfp.module, line 217
Code
function dfp_context_registry() {
return array(
'reactions' => array(
'dfp_tags' => array(
'title' => t('DFP Tags'),
'plugin' => 'dfp_context_reaction_tags',
),
'dfp_outofpage' => array(
'title' => t('DFP Out of page'),
'plugin' => 'dfp_context_reaction_outofpage',
),
'dfp_settings' => array(
'title' => t('DFP Variables'),
'plugin' => 'dfp_context_reaction_settings',
),
'dfp_adunit' => array(
'title' => t('DFP AdUnit'),
'plugin' => 'dfp_context_reaction_adunit',
),
'dfp_adsize' => array(
'title' => t('DFP Sizes'),
'plugin' => 'dfp_context_reaction_sizes',
),
),
);
}