Go to the documentation of this file.
45 if ( self::$instance ==
null ) {
46 self::$instance =
new self();
47 self::$instance->initFromGlobals();
57 self::$instance =
null;
64 global $wgLocalFileRepo, $wgForeignFileRepos, $wgFileBackends;
67 $this->
register( $wgFileBackends );
69 $autoBackends =
array();
71 $repos = array_merge( $wgForeignFileRepos,
array( $wgLocalFileRepo ) );
72 foreach ( $repos
as $info ) {
73 $backendName = $info[
'backend'];
74 if ( is_object( $backendName ) || isset( $this->backends[$backendName] ) ) {
77 $repoName = $info[
'name'];
79 $directory = $info[
'directory'];
80 $deletedDir = isset( $info[
'deletedDir'] )
83 $thumbDir = isset( $info[
'thumbDir'] )
85 :
"{$directory}/thumb";
86 $transcodedDir = isset( $info[
'transcodedDir'] )
87 ? $info[
'transcodedDir']
88 :
"{$directory}/transcoded";
89 $fileMode = isset( $info[
'fileMode'] )
93 $autoBackends[] =
array(
94 'name' => $backendName,
95 'class' =>
'FSFileBackend',
96 'lockManager' =>
'fsLockManager',
97 'containerPaths' =>
array(
98 "{$repoName}-public" =>
"{$directory}",
99 "{$repoName}-thumb" => $thumbDir,
100 "{$repoName}-transcoded" => $transcodedDir,
101 "{$repoName}-deleted" => $deletedDir,
102 "{$repoName}-temp" =>
"{$directory}/temp"
104 'fileMode' => $fileMode,
109 $this->
register( $autoBackends );
118 protected function register(
array $configs ) {
119 foreach ( $configs
as $config ) {
120 if ( !isset( $config[
'name'] ) ) {
123 $name = $config[
'name'];
124 if ( isset( $this->backends[
$name] ) ) {
126 } elseif ( !isset( $config[
'class'] ) ) {
129 $class = $config[
'class'];
131 unset( $config[
'class'] );
147 public function get(
$name ) {
148 if ( !isset( $this->backends[
$name] ) ) {
152 if ( !isset( $this->backends[
$name][
'instance'] ) ) {
153 $class = $this->backends[
$name][
'class'];
154 $config = $this->backends[
$name][
'config'];
155 $config[
'wikiId'] = isset( $config[
'wikiId'] )
158 $config[
'lockManager'] =
160 $config[
'fileJournal'] = isset( $config[
'fileJournal'] )
163 $this->backends[
$name][
'instance'] =
new $class( $config );
166 return $this->backends[
$name][
'instance'];
177 if ( !isset( $this->backends[
$name] ) ) {
180 $class = $this->backends[
$name][
'class'];
182 return array(
'class' => $class ) + $this->backends[
$name][
'config'];
193 if ( $backend !==
null && isset( $this->backends[$backend] ) ) {
194 return $this->
get( $backend );
static splitStoragePath( $storagePath)
Split a storage path into a backend name, a container name, and a relative file path.
Class to handle file backend registration.
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the as the burden of supporting them became too heavy to bear Those in etc for skin dependent CSS etc for skin dependent JavaScript These can also be customised on a per user by etc This feature has led to a wide variety of user styles becoming that gallery is a good place to ending in php
static singleton( $domain=false)
config( $name)
Get the config array for a backend object with a given name.
Generic file backend exception for checked and unexpected (e.g.
static destroySingleton()
Destroy the singleton instance.
Class for handling file operation journaling.
the array() calling protocol came about after MediaWiki 1.4rc1.
List of Api Query prop modules.
when a variable name is used in a it is silently declared as a new masking the global
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
wfWikiID()
Get an ASCII string identifying this wiki This is used as a prefix in memcached keys.
Allows to change the fields on the form that will be generated $name
initFromGlobals()
Register file backends from the global variables.
array $backends
(name => ('class' => string, 'config' => array, 'instance' => object)) *
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
backendFromPath( $storagePath)
Get an appropriate backend object from a storage path.
static factory(array $config, $backend)
Create an appropriate FileJournal object from config.