You are here

function _image_get_sizes in Image 6

Same name and namespace in other branches
  1. 5.2 image.module \_image_get_sizes()
  2. 5 image.module \_image_get_sizes()
  3. 7 image_legacy.module \_image_get_sizes()

Helper function to preserve backwards compatibility. This has been deprecated in favor of image_get_sizes().

@TODO: Remove this in a future version.

File

./image.module, line 978

Code

function _image_get_sizes($size = NULL, $aspect_ratio = NULL) {
  return image_get_sizes($size, $aspect_ratio);
}