You are here

function _image_get_sizes in Image 5.2

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

1 call to _image_get_sizes()
image_views_handler_filter_image_size in ./views.inc
Views - Generate a list of all the valid sizes that are available

File

./image.module, line 1123

Code

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