Esempio n. 1
0
 /**
 		@brief		Appends a new html string to the collection.
 		@since		2014-05-04 13:08:18
 	**/
 public function append($item)
 {
     $args = func_get_args();
     $text = @call_user_func_array('sprintf', $args);
     if ($text == '') {
         $text = $args[0];
     }
     return parent::append($text);
 }