MediaWiki  1.27.2
CssContent.php
Go to the documentation of this file.
1 <?php
33 class CssContent extends TextContent {
34 
38  private $redirectTarget = false;
39 
44  public function __construct( $text, $modelId = CONTENT_MODEL_CSS ) {
45  parent::__construct( $text, $modelId );
46  }
47 
60  public function preSaveTransform( Title $title, User $user, ParserOptions $popts ) {
62  // @todo Make pre-save transformation optional for script pages
63 
64  $text = $this->getNativeData();
65  $pst = $wgParser->preSaveTransform( $text, $title, $user, $popts );
66 
67  return new static( $pst );
68  }
69 
73  protected function getHtml() {
74  $html = "";
75  $html .= "<pre class=\"mw-code mw-css\" dir=\"ltr\">\n";
76  $html .= htmlspecialchars( $this->getNativeData() );
77  $html .= "\n</pre>\n";
78 
79  return $html;
80  }
81 
86  public function updateRedirect( Title $target ) {
87  if ( !$this->isRedirect() ) {
88  return $this;
89  }
90 
91  return $this->getContentHandler()->makeRedirectContent( $target );
92  }
93 
97  public function getRedirectTarget() {
98  if ( $this->redirectTarget !== false ) {
99  return $this->redirectTarget;
100  }
101  $this->redirectTarget = null;
102  $text = $this->getNativeData();
103  if ( strpos( $text, '/* #REDIRECT */' ) === 0 ) {
104  // Extract the title from the url
105  preg_match( '/title=(.*?)&action=raw/', $text, $matches );
106  if ( isset( $matches[1] ) ) {
108  if ( $title ) {
109  // Have a title, check that the current content equals what
110  // the redirect content should be
111  if ( $this->equals( $this->getContentHandler()->makeRedirectContent( $title ) ) ) {
112  $this->redirectTarget = $title;
113  }
114  }
115  }
116  }
117 
118  return $this->redirectTarget;
119  }
120 
121 }
preSaveTransform(Title $title, User $user, ParserOptions $popts)
Returns a Content object with pre-save transformations applied using Parser::preSaveTransform().
Definition: CssContent.php:60
getNativeData()
Returns the text represented by this Content object, as a string.
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped noclasses just before the function returns a value If you return an< a > element with HTML attributes $attribs and contents $html will be returned If you return $ret will be returned and may include noclasses & $html
Definition: hooks.txt:1798
Content object for CSS pages.
Definition: CssContent.php:33
__construct($text, $modelId=CONTENT_MODEL_CSS)
Definition: CssContent.php:44
Set options of the Parser.
$wgParser
Definition: Setup.php:809
static newFromText($text, $defaultNamespace=NS_MAIN)
Create a new Title from text, such as what one would find in a link.
Definition: Title.php:277
Represents a title within MediaWiki.
Definition: Title.php:34
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
bool Title null $redirectTarget
Definition: CssContent.php:38
Content object implementation for representing flat text.
Definition: TextContent.php:35
getRedirectTarget()
Definition: CssContent.php:97
updateRedirect(Title $target)
Definition: CssContent.php:86
equals(Content $that=null)
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:912
please add to it if you re going to add events to the MediaWiki code where normally authentication against an external auth plugin would be creating a local account $user
Definition: hooks.txt:242
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
const CONTENT_MODEL_CSS
Definition: Defines.php:279
$matches