* replace hard coded namespace numbers by the php define
[lhc/web/wiklou.git] / includes / AjaxFunctions.php
index 9ee3545..1a9adbc 100644 (file)
@@ -129,7 +129,7 @@ function wfAjaxWatch($pagename = "", $watch = "") {
 
 /**
  * Called in some places (currently just extensions)
- * to get the thumnail URL for a given file at a given resolution.
+ * to get the thumbnail URL for a given file at a given resolution.
  */
 function wfAjaxGetThumbnailUrl( $file, $width, $height ) {
        $file = wfFindFile( $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