function dfp_help in Doubleclick for Publishers (DFP) 7.2
Same name and namespace in other branches
- 8 dfp.module \dfp_help()
- 7 dfp.module \dfp_help()
Implements hook_help().
File
- ./
dfp.module, line 10
Code
function dfp_help($path, $arg) {
switch ($path) {
case 'admin/help#dfp':
$output = '<p>' . t('The Doubleclick For Publishers (DFP) module allows you to integrate Google Publisher Tags onto your site.') . '</p>';
$output .= '<p>' . t('This module provides you with a general settings form as well as the ability to create a tag (with all its associated data) in the database. You can display your ads as blocks, or add a simple bit of php to your tpl.php file(s) within your theme to indicate where specific tags should be displayed.') . '</p>';
return $output;
}
}