attributes($attributes).'>'.$icon.$this->entities($title).'';
}
/**
* Convert an HTML string to entities.
*
* @param string $value
* @return string
*/
public function entities($value)
{
return htmlentities($value, ENT_QUOTES, 'UTF-8', false);
}
/**
* Build an HTML attribute string from an array.
*
* @param array $attributes
* @return string
*/
public function attributes(array $attributes)
{
$html = [];
foreach ($attributes as $key => $value)
{
if (is_null($value)) continue;
if (is_numeric($key)) $key = $value;
$html[] = $key.'="'.$this->entities($value).'"';
}
return empty($html) ? '' : ' '.implode(' ', $html);
}
}