update smarty, ganti SQL

This commit is contained in:
Ibnu Maksum
2021-08-18 20:21:16 +07:00
parent fc9ddcd425
commit f5c3a68d80
222 changed files with 33463 additions and 25238 deletions

View File

@ -0,0 +1,33 @@
<?php
/**
* class for undefined variable object
* This class defines an object for undefined variable handling
*
* @package Smarty
* @subpackage Template
*/
class Smarty_Undefined_Variable extends Smarty_Variable
{
/**
* Returns null for not existing properties
*
* @param string $name
*
* @return null
*/
public function __get($name)
{
return null;
}
/**
* Always returns an empty string.
*
* @return string
*/
public function __toString()
{
return '';
}
}