A super easy PHP Framework for web development!
https://github.com/exacti/phacil-framework
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
572 B
34 lines
572 B
6 years ago
|
<?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 '';
|
||
|
}
|
||
|
}
|