1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
<?php
/**
* Foreign file with an accessible MediaWiki database
*
* @file
* @ingroup FileRepo
*/
/**
* Foreign file with an accessible MediaWiki database
*
* @ingroup FileRepo
*/
class ForeignDBFile extends LocalFile {
/**
* @param $title
* @param $repo
* @param $unused
* @return ForeignDBFile
*/
static function newFromTitle( $title, $repo, $unused = null ) {
return new self( $title, $repo );
}
/**
* Create a ForeignDBFile from a title
* Do not call this except from inside a repo class.
*
* @param $row
* @param $repo
*
* @return ForeignDBFile
*/
static function newFromRow( $row, $repo ) {
$title = Title::makeTitle( NS_FILE, $row->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();
}
/**
* @return string
*/
function getDescriptionUrl() {
// Restore remote behaviour
return File::getDescriptionUrl();
}
/**
* @return string
*/
function getDescriptionText() {
// Restore remote behaviour
return File::getDescriptionText();
}
}
|