3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
20 use MediaWiki\MediaWikiServices
;
23 * Generic wrapper for template functions, with interface
24 * compatible with what we use of PHPTAL 0.7.
27 abstract class QuickTemplate
{
29 /** @var Config $config */
33 * @param Config $config
35 function __construct( Config
$config = null ) {
37 $this->translator
= new MediaWikiI18N();
38 if ( $config === null ) {
39 wfDebug( __METHOD__
. ' was called with no Config instance passed to it' );
40 $config = MediaWikiServices
::getInstance()->getMainConfig();
42 $this->config
= $config;
46 * Sets the value $value to $name
50 public function set( $name, $value ) {
51 $this->data
[$name] = $value;
55 * extends the value of data with name $name with the value $value
60 public function extend( $name, $value ) {
61 if ( $this->haveData( $name ) ) {
62 $this->data
[$name] = $this->data
[$name] . $value;
64 $this->data
[$name] = $value;
69 * Gets the template data requested
71 * @param string $name Key for the data
72 * @param mixed $default Optional default (or null)
73 * @return mixed The value of the data requested or the deafult
75 public function get( $name, $default = null ) {
76 if ( isset( $this->data
[$name] ) ) {
77 return $this->data
[$name];
87 public function setRef( $name, &$value ) {
88 $this->data
[$name] =& $value;
92 * @param MediaWikiI18N $t
94 public function setTranslator( &$t ) {
95 $this->translator
= &$t;
99 * Main function, used by classes that subclass QuickTemplate
100 * to show the actual HTML output
102 abstract public function execute();
108 function text( $str ) {
109 echo htmlspecialchars( $this->data
[$str] );
116 function html( $str ) {
117 echo $this->data
[$str];
124 function msg( $str ) {
125 echo htmlspecialchars( $this->translator
->translate( $str ) );
132 function msgHtml( $str ) {
133 echo $this->translator
->translate( $str );
137 * An ugly, ugly hack.
141 function msgWiki( $str ) {
144 $text = $this->translator
->translate( $str );
145 echo $wgOut->parse( $text );
153 function haveData( $str ) {
154 return isset( $this->data
[$str] );
163 function haveMsg( $str ) {
164 $msg = $this->translator
->translate( $str );
165 return ( $msg != '-' ) && ( $msg != '' ); # ????
169 * Get the Skin object related to this object
173 public function getSkin() {
174 return $this->data
['skin'];
178 * Fetch the output of a QuickTemplate and return it
183 public function getHTML() {
186 $html = ob_get_contents();