MediaWiki REL1_31
XmlJsCode.php
Go to the documentation of this file.
1<?php
39class XmlJsCode {
40 public $value;
41
42 function __construct( $value ) {
43 $this->value = $value;
44 }
45}
A wrapper class which causes Xml::encodeJsVar() and Xml::encodeJsCall() to interpret a given string a...
Definition XmlJsCode.php:39
__construct( $value)
Definition XmlJsCode.php:42