MediaWiki REL1_31
CssContentHandler.php
Go to the documentation of this file.
1<?php
31
35 public function __construct( $modelId = CONTENT_MODEL_CSS ) {
36 parent::__construct( $modelId, [ CONTENT_FORMAT_CSS ] );
37 }
38
39 protected function getContentClass() {
40 return CssContent::class;
41 }
42
43 public function supportsRedirects() {
44 return true;
45 }
46
54 public function makeRedirectContent( Title $destination, $text = '' ) {
55 // The parameters are passed as a string so the / is not url-encoded by wfArrayToCgi
56 $url = $destination->getFullURL( 'action=raw&ctype=text/css', false, PROTO_RELATIVE );
57 $class = $this->getContentClass();
58 return new $class( '/* #REDIRECT */@import ' . CSSMin::buildUrlValue( $url ) . ';' );
59 }
60
61}
static buildUrlValue( $url)
Build a CSS 'url()' value for the given URL, quoting parentheses (and other funny characters) and esc...
Definition CSSMin.php:221
Content handler for code content such as CSS, JavaScript, JSON, etc.
Content handler for CSS pages.
__construct( $modelId=CONTENT_MODEL_CSS)
supportsRedirects()
Returns true if this content model supports redirects.
makeRedirectContent(Title $destination, $text='')
Create a redirect that is also valid CSS.
Represents a title within MediaWiki.
Definition Title.php:39
getFullURL( $query='', $query2=false, $proto=PROTO_RELATIVE)
Get a real URL referring to this title, with interwiki link and fragment.
Definition Title.php:1842
const CONTENT_MODEL_CSS
Definition Defines.php:247
const CONTENT_FORMAT_CSS
Definition Defines.php:264
const PROTO_RELATIVE
Definition Defines.php:231
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