MediaWiki REL1_33
QuickTemplate.php
Go to the documentation of this file.
1<?php
21
27abstract class QuickTemplate {
28
32 public $data;
33
35 protected $config;
36
40 function __construct( Config $config = null ) {
41 $this->data = [];
42 if ( $config === null ) {
43 wfDebug( __METHOD__ . ' was called with no Config instance passed to it' );
44 $config = MediaWikiServices::getInstance()->getMainConfig();
45 }
46 $this->config = $config;
47 }
48
54 public function set( $name, $value ) {
55 $this->data[$name] = $value;
56 }
57
64 public function extend( $name, $value ) {
65 if ( $this->haveData( $name ) ) {
66 $this->data[$name] .= $value;
67 } else {
68 $this->data[$name] = $value;
69 }
70 }
71
80 public function get( $name, $default = null ) {
81 return $this->data[$name] ?? $default;
82 }
83
91 public function setRef( $name, &$value ) {
92 wfDeprecated( __METHOD__, '1.31' );
93 $this->data[$name] =& $value;
94 }
95
100 abstract public function execute();
101
107 function text( $str ) {
108 echo htmlspecialchars( $this->data[$str] );
109 }
110
116 function html( $str ) {
117 echo $this->data[$str];
118 }
119
124 function msg( $msgKey ) {
125 echo htmlspecialchars( wfMessage( $msgKey )->text() );
126 }
127
136 function msgHtml( $msgKey ) {
137 wfDeprecated( __METHOD__, '1.32' );
138 echo wfMessage( $msgKey )->text();
139 }
140
146 function msgWiki( $msgKey ) {
147 // TODO: Add wfDeprecated( __METHOD__, '1.33' ) after 1.33 got released
148 global $wgOut;
149
150 $text = wfMessage( $msgKey )->plain();
151 echo $wgOut->parseAsInterface( $text );
152 }
153
159 function haveData( $str ) {
160 return isset( $this->data[$str] );
161 }
162
169 function haveMsg( $msgKey ) {
170 $msg = wfMessage( $msgKey );
171 return $msg->exists() && !$msg->isDisabled();
172 }
173
179 public function getSkin() {
180 return $this->data['skin'];
181 }
182
189 public function getHTML() {
190 ob_start();
191 $this->execute();
193 ob_end_clean();
194 return $html;
195 }
196}
This list may contain false positives That usually means there is additional text with links below the first Each row contains links to the first and second as well as the first line of the second redirect text
and that you know you can do these things To protect your we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights These restrictions translate to certain responsibilities for you if you distribute copies of the or if you modify it For if you distribute copies of such a whether gratis or for a you must give the recipients all the rights that you have You must make sure that receive or can get the source code And you must show them these terms so they know their rights We protect your rights with two and(2) offer you this license which gives you legal permission to copy
wfDebug( $text, $dest='all', array $context=[])
Sends a line to the debug log if enabled or, optionally, to a comment in output.
wfDeprecated( $function, $version=false, $component=false, $callerOffset=2)
Throws a warning that $function is deprecated.
$wgOut
Definition Setup.php:880
MediaWikiServices is the service locator for the application scope of MediaWiki.
Generic wrapper for template functions, with interface compatible with what we use of PHPTAL 0....
msgHtml( $msgKey)
getSkin()
Get the Skin object related to this object.
__construct(Config $config=null)
setRef( $name, &$value)
getHTML()
Fetch the output of a QuickTemplate and return it.
msgWiki( $msgKey)
An ugly, ugly hack.
extend( $name, $value)
extends the value of data with name $name with the value $value
execute()
Main function, used by classes that subclass QuickTemplate to show the actual HTML output.
haveMsg( $msgKey)
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that When $user is not null
Definition hooks.txt:783
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message additional optional elements are parameters for the key that are processed with wfMessage() -> params() ->parseAsBlock() - offset Set to overwrite offset parameter in $wgRequest set to '' to unset offset - wrap String Wrap the message in html(usually something like "&lt;div ...>$1&lt;/div>"). - flags Integer display flags(NO_ACTION_LINK, NO_EXTRA_USER_LINKS) 'LogException':Called before an exception(or PHP error) is logged. This is meant for integration with external error aggregation services
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:2011
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
Interface for configuration instances.
Definition Config.php:28
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))