MediaWiki  REL1_31
FakeDimensionFile.php
Go to the documentation of this file.
1 <?php
2 
3 class FakeDimensionFile extends File {
4  public $mustRender = false;
5  public $mime;
6  public $dimensions;
7 
8  public function __construct( $dimensions, $mime = 'unknown/unknown' ) {
9  parent::__construct( Title::makeTitle( NS_FILE, 'Test' ),
10  new NullRepo( null ) );
11 
12  $this->dimensions = $dimensions;
13  $this->mime = $mime;
14  }
15 
16  public function getWidth( $page = 1 ) {
17  return $this->dimensions[0];
18  }
19 
20  public function getHeight( $page = 1 ) {
21  return $this->dimensions[1];
22  }
23 
24  public function mustRender() {
25  return $this->mustRender;
26  }
27 
28  public function getPath() {
29  return '';
30  }
31 
32  public function getMimeType() {
33  return $this->mime;
34  }
35 }
NullRepo
File repository with no files, for performance testing.
Definition: NullRepo.php:28
NS_FILE
const NS_FILE
Definition: Defines.php:80
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:37
File
Implements some public methods and some protected utility functions which are required by multiple ch...
Definition: File.php:51
FakeDimensionFile
Definition: FakeDimensionFile.php:3
Title\makeTitle
static makeTitle( $ns, $title, $fragment='', $interwiki='')
Create a new Title from a namespace index and a DB key.
Definition: Title.php:534
FakeDimensionFile\getWidth
getWidth( $page=1)
Return the width of the image.
Definition: FakeDimensionFile.php:16
FakeDimensionFile\getMimeType
getMimeType()
Returns the MIME type of the file.
Definition: FakeDimensionFile.php:32
FakeDimensionFile\$mustRender
$mustRender
Definition: FakeDimensionFile.php:4
FakeDimensionFile\getHeight
getHeight( $page=1)
Return the height of the image.
Definition: FakeDimensionFile.php:20
FakeDimensionFile\getPath
getPath()
Return the storage path to the file.
Definition: FakeDimensionFile.php:28
FakeDimensionFile\$mime
$mime
Definition: FakeDimensionFile.php:5
FakeDimensionFile\__construct
__construct( $dimensions, $mime='unknown/unknown')
Call this constructor from child classes.
Definition: FakeDimensionFile.php:8
FakeDimensionFile\$dimensions
$dimensions
Definition: FakeDimensionFile.php:6
FakeDimensionFile\mustRender
mustRender()
Return true if the file is of a type that can't be directly rendered by typical browsers and needs to...
Definition: FakeDimensionFile.php:24