wiki.techinc.nl/includes/filerepo/file/ForeignDBFile.php

123 lines
2.8 KiB
PHP
Raw Normal View History

<?php
/**
* Foreign file with an accessible MediaWiki database.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License along
* with this program; if not, write to the Free Software Foundation, Inc.,
* 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
* http://www.gnu.org/copyleft/gpl.html
*
* @file
2012-02-08 15:51:16 +00:00
* @ingroup FileAbstraction
*/
/**
* Foreign file with an accessible MediaWiki database
*
2012-02-08 15:51:16 +00:00
* @ingroup FileAbstraction
*/
class ForeignDBFile extends LocalFile {
2011-05-28 17:51:33 +00:00
/**
* @param $title
* @param $repo
* @param $unused
* @return ForeignDBFile
*/
2008-05-10 17:41:17 +00:00
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.
2011-05-28 17:51:33 +00:00
*
* @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;
}
/**
* @param $srcPath String
* @param $flags int
* @throws MWException
*/
2008-05-10 17:41:17 +00:00
function publish( $srcPath, $flags = 0 ) {
$this->readOnlyError();
}
/**
* @param $oldver
* @param $desc string
* @param $license string
* @param $copyStatus string
* @param $source string
* @param $watch bool
* @param $timestamp bool|string
* @throws MWException
*/
2008-05-10 17:41:17 +00:00
function recordUpload( $oldver, $desc, $license = '', $copyStatus = '', $source = '',
$watch = false, $timestamp = false ) {
$this->readOnlyError();
}
2011-05-28 17:51:33 +00:00
/**
* @param $versions array
* @param $unsuppress bool
* @throws MWException
*/
2008-05-10 17:41:17 +00:00
function restore( $versions = array(), $unsuppress = false ) {
$this->readOnlyError();
}
2011-05-28 17:51:33 +00:00
/**
* @param $reason string
* @param $suppress bool
* @throws MWException
*/
2008-05-10 17:41:17 +00:00
function delete( $reason, $suppress = false ) {
$this->readOnlyError();
}
2011-05-28 17:51:33 +00:00
/**
* @param $target Title
* @throws MWException
*/
2008-05-10 17:41:17 +00:00
function move( $target ) {
2008-05-03 13:49:53 +00:00
$this->readOnlyError();
}
2011-05-28 17:51:33 +00:00
/**
* @return string
*/
function getDescriptionUrl() {
// Restore remote behaviour
return File::getDescriptionUrl();
}
2011-05-28 17:51:33 +00:00
/**
* @return string
*/
function getDescriptionText() {
// Restore remote behaviour
return File::getDescriptionText();
}
}