function _adsense_get_dimensions in Google AdSense integration 5.2
Same name and namespace in other branches
- 5 adsense.module \_adsense_get_dimensions()
2 calls to _adsense_get_dimensions()
File
- ./
adsense.module, line 1083
Code
function _adsense_get_dimensions($format) {
list($width, $height) = explode('x', $format);
return array(
'width' => $width,
'height' => $height,
);
}