Made suppress link bold
[lhc/web/wiklou.git] / includes / AjaxFunctions.php
index d18f7a9..1a9adbc 100644 (file)
@@ -139,5 +139,20 @@ function wfAjaxGetThumbnailUrl( $file, $width, $height ) {
                
        $url = $file->getThumbnail( $width, $height )->url;
        
+       return $url;
+}
+
+/**
+ * Called in some places (currently just extensions)
+ * to get the URL for a given file.
+ */
+function wfAjaxGetFileUrl( $file ) {
+       $file = wfFindFile( $file );
+       
+       if ( !$file || !$file->exists() )
+               return null;
+               
+       $url = $file->getUrl();
+       
        return $url;
 }
\ No newline at end of file