cluesshop.com

Showing posts with label FIleurl. Show all posts
Showing posts with label FIleurl. Show all posts

Friday, 11 July 2014

function to ceate file url


 Function to create file url in drupal 7

public static function getImagPath($imageid){
        $image = file_load($imageid);
       $imageurl = file_create_url($image->uri);
       return $imageurl;
    }