. **/ class CIcon extends CSpan { public function __construct(string $icon_class, string $title = null) { parent::__construct(); $this ->addClass(ZBX_STYLE_ICON) ->addClass($icon_class); if ($title !== null) { $this->setTitle($title); } } }