AdminPageFramework_Form_View___ToolTip::get PHP Method

get() public method

public get ( )
    public function get()
    {
        if (!$this->aArguments['content']) {
            return '';
        }
        return "<a " . $this->_getElementAttributes('container', 'admin-page-framework-form-tooltip') . ">" . $this->_getTipLinkIcon() . "<span " . $this->_getElementAttributes('content', 'admin-page-framework-form-tooltip-content') . ">" . $this->_getTipTitle() . $this->_getDescriptions() . "</span>" . "</a>";
    }

Usage Example

 private function _getToolTip()
 {
     $_aSectionset = $this->aArguments['sectionset'];
     $_sSectionTitleTagID = str_replace('|', '_', $_aSectionset['_section_path']) . '_' . $this->aArguments['section_index'];
     $_oToolTip = new AdminPageFramework_Form_View___ToolTip($_aSectionset['tip'], $_sSectionTitleTagID);
     return $_oToolTip->get();
 }
All Usage Examples Of AdminPageFramework_Form_View___ToolTip::get