function amp_adsense_theme in Accelerated Mobile Pages (AMP) 7
Implements hook_theme().
File
- modules/
amp_adsense/ amp_adsense.module, line 45 - AMP integration for the Adsense module.
Code
function amp_adsense_theme() {
$theme = array(
'amp_ad' => array(
'variables' => array(
'adtype' => NULL,
'height' => NULL,
'width' => NULL,
'slot_attributes' => NULL,
'slot_attributes_array' => array(),
),
'template' => 'amp-ad',
),
);
return $theme;
}