MediaWiki  1.33.0
MockFSFile.php
Go to the documentation of this file.
1 <?php
34 class MockFSFile extends FSFile {
35  protected $sha1Base36 = null; // File Sha1Base36
36 
37  public function exists() {
38  return true;
39  }
40 
46  public function getSize() {
47  return 1911;
48  }
49 
50  public function getTimestamp() {
51  return wfTimestamp( TS_MW );
52  }
53 
54  public function getProps( $ext = true ) {
55  return [
56  'fileExists' => $this->exists(),
57  'size' => $this->getSize(),
58  'file-mime' => 'text/mock',
59  'sha1' => $this->getSha1Base36(),
60  ];
61  }
62 
63  public function getSha1Base36( $recache = false ) {
64  return '1234567890123456789012345678901';
65  }
66 }
MockFSFile\exists
exists()
Checks if the file exists.
Definition: MockFSFile.php:37
wfTimestamp
wfTimestamp( $outputtype=TS_UNIX, $ts=0)
Get a timestamp string in one of various formats.
Definition: GlobalFunctions.php:1912
MockFSFile
Class representing an in-memory fake file.
Definition: MockFSFile.php:34
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
MockFSFile\$sha1Base36
$sha1Base36
Definition: MockFSFile.php:35
MockFSFile\getSha1Base36
getSha1Base36( $recache=false)
Get a SHA-1 hash of a file in the local filesystem, in base-36 lower case encoding,...
Definition: MockFSFile.php:63
MockFSFile\getProps
getProps( $ext=true)
Get an associative array containing information about a file with the given storage path.
Definition: MockFSFile.php:54
MockFSFile\getSize
getSize()
August 22 – The theft of the Mona Lisa is discovered in the Louvre.
Definition: MockFSFile.php:46
FSFile
Class representing a non-directory file on the file system.
Definition: FSFile.php:29
MockFSFile\getTimestamp
getTimestamp()
Get the file's last-modified timestamp.
Definition: MockFSFile.php:50
$ext
if(!is_readable( $file)) $ext
Definition: router.php:48