summaryrefslogtreecommitdiff
path: root/framework/TJavaScriptLiteral.php
diff options
context:
space:
mode:
authorFabio Bas <ctrlaltca@gmail.com>2015-01-22 09:14:12 +0100
committerFabio Bas <ctrlaltca@gmail.com>2015-01-22 09:14:12 +0100
commit5230f8f8a86fc1ae5d90f8c74ae65c93e197502b (patch)
treee870d29e21c14d5b1683d638dff978afe0a104fa /framework/TJavaScriptLiteral.php
parent53e4cd65205ac33d7dbc61a767f467c1b896dfc6 (diff)
Apply namespaces to class inheritances (pt1)
Diffstat (limited to 'framework/TJavaScriptLiteral.php')
-rw-r--r--framework/TJavaScriptLiteral.php57
1 files changed, 0 insertions, 57 deletions
diff --git a/framework/TJavaScriptLiteral.php b/framework/TJavaScriptLiteral.php
deleted file mode 100644
index 56dc6e85..00000000
--- a/framework/TJavaScriptLiteral.php
+++ /dev/null
@@ -1,57 +0,0 @@
-<?php
-/**
- * TComponent, TPropertyValue classes
- *
- * @author Qiang Xue <qiang.xue@gmail.com>
- *
- * Global Events, intra-object events, Class behaviors, expanded behaviors
- * @author Brad Anderson <javalizard@mac.com>
- *
- * @link http://www.pradosoft.com/
- * @copyright Copyright &copy; 2005-2014 PradoSoft
- * @license http://www.pradosoft.com/license/
- * @package Prado
- */
-
-namespace Prado;
-
-/**
- * TJavaScriptLiteral class that encloses string literals that are not
- * supposed to be escaped by {@link TJavaScript::encode() }
- *
- * Since Prado 3.2 all the data that gets sent clientside inside a javascript statement
- * is encoded by default to avoid any kind of injection.
- * Sometimes there's the need to bypass this encoding and send raw javascript code.
- * To ensure that a string doesn't get encoded by {@link TJavaScript::encode() },
- * construct a new TJavaScriptLiteral:
- * <code>
- * // a javascript test string
- * $js="alert('hello')";
- * // the string in $raw will not be encoded when sent clientside inside a javascript block
- * $raw=new TJavaScriptLiteral($js);
- * // shortened form
- * $raw=_js($js);
- * </code>
- *
- * @package Prado
- * @since 3.2.0
- */
-class TJavaScriptLiteral
-{
- protected $_s;
-
- public function __construct($s)
- {
- $this->_s = $s;
- }
-
- public function __toString()
- {
- return (string)$this->_s;
- }
-
- public function toJavaScriptLiteral()
- {
- return $this->__toString();
- }
-} \ No newline at end of file