Changeset 1411
- Timestamp:
- 06/09/06 15:39:22 (2 years ago)
- Files:
-
- trunk/lib/view/escaper/sfOutputEscaper.class.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lib/view/escaper/sfOutputEscaper.class.php
r1321 r1411 115 115 throw new sfException(sprintf('Unable to escape value "%s"', print_r($value, true))); 116 116 } 117 118 /** 119 * Return the raw value associated with this instance. 120 * 121 * Concrete instances of sfOutputEscaper classes decorate a value which is 122 * stored by the constructor. This returns that original, unescaped, value. 123 * 124 * @return mixed the original value used to construct the decorator 125 */ 126 public function getRawValue() 127 { 128 return $this->value; 129 } 117 130 } 118 131