Repair getDescriptionUrl() and getDescriptionText() Follow up to r69907 and r69908
[lhc/web/wiklou.git] / includes / filerepo / ForeignDBFile.php
1 <?php
2
3 /**
4 * @ingroup FileRepo
5 */
6 class ForeignDBFile extends LocalFile {
7 static function newFromTitle( $title, $repo, $unused = null ) {
8 return new self( $title, $repo );
9 }
10
11 /**
12 * Create a ForeignDBFile from a title
13 * Do not call this except from inside a repo class.
14 */
15 static function newFromRow( $row, $repo ) {
16 $title = Title::makeTitle( NS_FILE, $row->img_name );
17 $file = new self( $title, $repo );
18 $file->loadFromRow( $row );
19 return $file;
20 }
21
22 function publish( $srcPath, $flags = 0 ) {
23 $this->readOnlyError();
24 }
25
26 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
27 $watch = false, $timestamp = false ) {
28 $this->readOnlyError();
29 }
30 function restore( $versions = array(), $unsuppress = false ) {
31 $this->readOnlyError();
32 }
33 function delete( $reason, $suppress = false ) {
34 $this->readOnlyError();
35 }
36 function move( $target ) {
37 $this->readOnlyError();
38 }
39 }