You are here

function brilliant_gallery_get_extension in Brilliant Gallery 7

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

@todo Please document this function.

See also

http://drupal.org/node/1354

3 calls to brilliant_gallery_get_extension()
brilliant_gallery_rmdir_recursive in ./brilliant_gallery_cron.inc
@todo Please document this function.
render_brilliant_gallery in ./brilliant_gallery_showtime.inc
render_brilliant_gallery_manage in ./brilliant_gallery_manage.inc

File

./brilliant_gallery_functions.inc, line 168

Code

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