Deprecated HtmlInput::make_object must be replace by json_encode

This commit is contained in:
Rachel 2016-12-23 11:38:37 +01:00 committed by Dany De Bontridder
parent 1084a53b04
commit d3e75f144e

View file

@ -133,6 +133,7 @@ class HtmlInput
* @return javascript string with the object
* @note: there is not check on the key->value, so you could need to escape
* special char as quote, single-quote...
* @deprecated
* @code
$a=new IButton()
$a->set_attribute('prop','1');
@ -144,7 +145,7 @@ class HtmlInput
echo $string => {'prop':'1','prop2':'2','prop3':'3'};
@endcode
*/
public function make_object($p_name=null)
public function make_object_deprecated($p_name=null)
{
$name=($p_name != null)?$p_name.'=':'';
if ( count($this->attribute) == 0) return $name."{}";