AdminPageFramework_Form_View___ToolTip::_getTipLinkIcon PHP Method

_getTipLinkIcon() private method

private _getTipLinkIcon ( )
    private function _getTipLinkIcon()
    {
        if (isset($this->aArguments['icon'])) {
            return $this->aArguments['icon'];
        }
        if (version_compare($GLOBALS['wp_version'], '3.8', '>=')) {
            return "<span " . $this->_getElementAttributes('icon', array('dashicons', $this->aArguments['dash-icon'])) . "></span>";
        }
        return $this->aArguments['icon_alt_text'];
    }