X-Git-Url: https://scripts.mit.edu/gitweb/autoinstallsdev/mediawiki.git/blobdiff_plain/19e297c21b10b1b8a3acad5e73fc71dcb35db44a..6932310fd58ebef145fa01eb76edf7150284d8ea:/includes/filerepo/ForeignDBFile.php diff --git a/includes/filerepo/ForeignDBFile.php b/includes/filerepo/ForeignDBFile.php deleted file mode 100644 index 5f04ea73..00000000 --- a/includes/filerepo/ForeignDBFile.php +++ /dev/null @@ -1,57 +0,0 @@ -img_name ); - $file = new self( $title, $repo ); - $file->loadFromRow( $row ); - return $file; - } - - function publish( $srcPath, $flags = 0 ) { - $this->readOnlyError(); - } - - function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '', - $watch = false, $timestamp = false ) { - $this->readOnlyError(); - } - function restore( $versions = array(), $unsuppress = false ) { - $this->readOnlyError(); - } - function delete( $reason, $suppress = false ) { - $this->readOnlyError(); - } - function move( $target ) { - $this->readOnlyError(); - } - - function getDescriptionUrl() { - // Restore remote behaviour - return File::getDescriptionUrl(); - } - - function getDescriptionText() { - // Restore remote behaviour - return File::getDescriptionText(); - } -}