function dfp_context_plugins in Doubleclick for Publishers (DFP) 7
Same name and namespace in other branches
- 7.2 dfp.module \dfp_context_plugins()
Implements hook_context_plugins().
File
- ./
dfp.module, line 248
Code
function dfp_context_plugins() {
$plugins = array();
$plugins['dfp_context_reaction_tags'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'dfp') . '/plugins/contexts',
'file' => 'dfp_context_reaction_tags.inc',
'class' => 'dfp_context_reaction_tags',
'parent' => 'context_reaction',
),
);
$plugins['dfp_context_reaction_outofpage'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'dfp') . '/plugins/contexts',
'file' => 'dfp_context_reaction_outofpage.inc',
'class' => 'dfp_context_reaction_outofpage',
'parent' => 'context_reaction',
),
);
$plugins['dfp_context_reaction_settings'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'dfp') . '/plugins/contexts',
'file' => 'dfp_context_reaction_settings.inc',
'class' => 'dfp_context_reaction_settings',
'parent' => 'context_reaction',
),
);
$plugins['dfp_context_reaction_adunit'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'dfp') . '/plugins/contexts',
'file' => 'dfp_context_reaction_adunit.inc',
'class' => 'dfp_context_reaction_adunit',
'parent' => 'context_reaction',
),
);
$plugins['dfp_context_reaction_sizes'] = array(
'handler' => array(
'path' => drupal_get_path('module', 'dfp') . '/plugins/contexts',
'file' => 'dfp_context_reaction_sizes.inc',
'class' => 'dfp_context_reaction_sizes',
'parent' => 'context_reaction',
),
);
return $plugins;
}