function iframe_theme in Iframe 6
Same name and namespace in other branches
- 8.2 iframe.module \iframe_theme()
Implementation of hook_theme().
File
- ./
iframe.module, line 443 - Defines simple iframe field types. based on the cck-module "link" by quicksketch MODULE-Funtions
Code
function iframe_theme() {
dmsg(3, 'func iframe_theme');
return array(
'iframe_field_settings' => array(
'arguments' => array(
'element' => NULL,
),
),
'iframe_formatter_default' => array(
'arguments' => array(
'element' => NULL,
),
),
'iframe_formatter_iframeonly' => array(
'arguments' => array(
'element' => NULL,
),
),
'iframe_formatter_asurl' => array(
'arguments' => array(
'element' => NULL,
),
),
'iframe_formatter_asurl_withuri' => array(
'arguments' => array(
'element' => NULL,
),
),
'iframe' => array(
'arguments' => array(
'element' => NULL,
),
),
);
}