Use localised parentheses for Han script autonyms
[mediawiki.git] / includes / filerepo / file / ForeignDBFile.php
blob91f6cb6259aa1a07e6f958b91be467bdc33f1e5a
1 <?php
2 /**
3 * Foreign file with an accessible MediaWiki database.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup FileAbstraction
24 /**
25 * Foreign file with an accessible MediaWiki database
27 * @ingroup FileAbstraction
29 class ForeignDBFile extends LocalFile {
31 /**
32 * @param $title
33 * @param $repo
34 * @param $unused
35 * @return ForeignDBFile
37 static function newFromTitle( $title, $repo, $unused = null ) {
38 return new self( $title, $repo );
41 /**
42 * Create a ForeignDBFile from a title
43 * Do not call this except from inside a repo class.
45 * @param $row
46 * @param $repo
48 * @return ForeignDBFile
50 static function newFromRow( $row, $repo ) {
51 $title = Title::makeTitle( NS_FILE, $row->img_name );
52 $file = new self( $title, $repo );
53 $file->loadFromRow( $row );
54 return $file;
57 /**
58 * @param $srcPath String
59 * @param $flags int
60 * @throws MWException
62 function publish( $srcPath, $flags = 0 ) {
63 $this->readOnlyError();
66 /**
67 * @param $oldver
68 * @param $desc string
69 * @param $license string
70 * @param $copyStatus string
71 * @param $source string
72 * @param $watch bool
73 * @param $timestamp bool|string
74 * @throws MWException
76 function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
77 $watch = false, $timestamp = false ) {
78 $this->readOnlyError();
81 /**
82 * @param $versions array
83 * @param $unsuppress bool
84 * @throws MWException
86 function restore( $versions = array(), $unsuppress = false ) {
87 $this->readOnlyError();
90 /**
91 * @param $reason string
92 * @param $suppress bool
93 * @throws MWException
95 function delete( $reason, $suppress = false ) {
96 $this->readOnlyError();
99 /**
100 * @param $target Title
101 * @throws MWException
103 function move( $target ) {
104 $this->readOnlyError();
108 * @return string
110 function getDescriptionUrl() {
111 // Restore remote behaviour
112 return File::getDescriptionUrl();
116 * @return string
118 function getDescriptionText() {
119 // Restore remote behaviour
120 return File::getDescriptionText();