You are here

function brilliant_gallery_get_extension in Brilliant Gallery 7.2

Same name and namespace in other branches
  1. 6.4 functions.inc \brilliant_gallery_get_extension()
  2. 7 brilliant_gallery_functions.inc \brilliant_gallery_get_extension()

@todo Please document this function.

See also

http://drupal.org/node/1354

1 call to brilliant_gallery_get_extension()
render_brilliant_gallery in ./OLD_brilliant_gallery_showtime.inc

File

./OLD_brilliant_gallery_functions.inc, line 170

Code

function brilliant_gallery_get_extension($imagename) {
  $imagename = explode(".", $imagename);
  $extension = strtolower(array_pop($imagename));
  return $extension;
}