get_download_image_path() публичный статический Метод

Get the best available paths for image and thumbnail
public static get_download_image_path ( $download_image, $download_image_thumb, boolean | FALSE $hiRes = false ) : boolean | string
$download_image
$download_image_thumb
$hiRes boolean | FALSE
Результат boolean | string
Пример #1
0
/**
 * Get the closest image available
 * @param      $image
 * @param      $thumb1
 * @param bool $hires - true for image, false for thumbnail
 * @return bool|string
 */
function get_download_image_path($image, $thumb1, $hires = FALSE)
{
    return \PHPFusion\Downloads\Functions::get_download_image_path($image, $thumb1, $hires);
}