Admin_View_Helper_JQueryUtils::__toString PHP Méthode

__toString() public méthode

Turn helper into string
public __toString ( ) : string
Résultat string
    public function __toString()
    {
        $x = '';
        foreach ($this->_repo as $key => $val) {
            $x .= " {$key} : {$val} ;";
        }
        return $x;
    }