<?php
class Smarty_Variable
{
public $value = null;
public $nocache = false;
public function __construct($value = null, $nocache = false)
{
$this->value = $value;
$this->nocache = $nocache;
}
/**
* <<magic>> String conversion
*
* @return string
*/
public function __toString()
{
return (string)$this->value;
}
}