You are here

function _image_get_sizes in Image 7

Same name and namespace in other branches
  1. 5.2 image.module \_image_get_sizes()
  2. 5 image.module \_image_get_sizes()
  3. 6 image.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_legacy.module, line 133

Code

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