123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- <?php
- class Smarty_Variable
- {
-
- public $value = null;
-
- public $nocache = false;
-
- public function __construct($value = null, $nocache = false)
- {
- $this->value = $value;
- $this->nocache = $nocache;
- }
-
- public function __toString()
- {
- return (string) $this->value;
- }
- }
|