1
0
Fork 0
Dieser Commit ist enthalten in:
Ortwin Pinke 2019-11-04 17:27:34 +01:00 committet von GitHub
Ursprung 833f88731f
Commit df675e403f
Es konnte kein GPG-Schlüssel zu dieser Signatur gefunden werden
GPG-Schlüssel-ID: 4AEE18F83AFDEB23
55 geänderte Dateien mit 12775 neuen und 0 gelöschten Zeilen

Datei anzeigen

@ -0,0 +1,48 @@
<?php
/**
* class for the Smarty variable object
* This class defines the Smarty variable object
*
* @package Smarty
* @subpackage Template
*/
class Smarty_Variable
{
/**
* template variable
*
* @var mixed
*/
public $value = null;
/**
* if true any output of this variable will be not cached
*
* @var boolean
*/
public $nocache = false;
/**
* create Smarty variable object
*
* @param mixed $value the value to assign
* @param boolean $nocache if true any output of this variable will be not cached
*/
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;
}
}