function ad_image_format_load in Advertisement 5
Same name and namespace in other branches
- 5.2 image/ad_image.module \ad_image_format_load()
- 6.3 image/ad_image.module \ad_image_format_load()
- 6 image/ad_image.module \ad_image_format_load()
- 6.2 image/ad_image.module \ad_image_format_load()
- 7 image/ad_image.module \ad_image_format_load()
1 call to ad_image_format_load()
- ad_image_validate_size in image/
ad_image.module - Validate that the size of the uploaded image is within the defined limits.
File
- image/
ad_image.module, line 264 - Enhances the ad module to support banner ads.
Code
function ad_image_format_load($gid) {
static $format;
if (!is_null($format[$gid])) {
return $format[$gid];
}
$format[$gid] = db_fetch_object(db_query('SELECT * FROM {ad_image_format} WHERE gid = %d', $gid));
return $format[$gid];
}