PMA\libraries\RecentFavoriteTable::getHtml PHP Method

getHtml() public method

Return HTML.
public getHtml ( ) : string
return string
    public function getHtml()
    {
        $html = '<div class="drop_list">';
        if ($this->_tableType == 'recent') {
            $html .= '<span title="' . __('Recent tables') . '" class="drop_button">' . __('Recent') . '</span><ul id="pma_recent_list">';
        } else {
            $html .= '<span title="' . __('Favorite tables') . '" class="drop_button">' . __('Favorites') . '</span><ul id="pma_favorite_list">';
        }
        $html .= $this->getHtmlList();
        $html .= '</ul></div>';
        return $html;
    }