function brilliant_gallery_image_properties_get in Brilliant Gallery 7.2
Same name and namespace in other branches
- 6.4 functions.inc \brilliant_gallery_image_properties_get()
- 7 brilliant_gallery_functions.inc \brilliant_gallery_image_properties_get()
@todo Please document this function.
See also
1 call to brilliant_gallery_image_properties_get()
- brilliant_gallery_deliver_image in ./
OLD_brilliant_gallery_functions.inc - @todo Please document this function.
File
- ./
OLD_brilliant_gallery_functions.inc, line 157
Code
function brilliant_gallery_image_properties_get($bgimgproperties_hash) {
// TODO Please convert this statement to the D7 database API syntax.
$bgimgproperties_array = db_query("SELECT array FROM {brilliant_gallery_image_arrays} WHERE hash = '" . $bgimgproperties_hash . "' LIMIT 1")
->fetchField();
$bgimgproperties_array = unserialize($bgimgproperties_array);
return $bgimgproperties_array;
}