function iframe_help in Iframe 7
Same name and namespace in other branches
- 8.2 iframe.module \iframe_help()
- 8 iframe.module \iframe_help()
Implements hook_help().
File
- ./
iframe.module, line 41 - Defines an iframe field with all attributes.
Code
function iframe_help($path, $arg) {
switch ($path) {
case 'admin/help#iframe':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The Iframe module defines an iframe field type for the Field module. Further definable are attributes for styling the iframe, like: URL, width, height, title, class, frameborder, scrolling and transparency. See the <a href="@field-help">Field module help page</a> for more information about fields.', array(
'@field-help' => url('admin/help/field'),
)) . '</p>';
return $output;
}
}