Advertisement
ricardo99

Untitled

Dec 16th, 2015
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. <?php
  2.  
  3. namespace App\Lib\Utils;
  4.  
  5. class UploadUtils {
  6.  
  7. public static function getOutputThumbUrl($mainImage, $productId)
  8. {
  9. return str_replace(PRODUCTS_IMAGES_FOLDER . $productId,
  10. PRODUCTS_THUMB_FOLDER, $mainImage);
  11. }
  12. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement