PMA\libraries\RecentFavoriteTable::_getPmaTable PHP Method

_getPmaTable() private method

Reutrn the name of the configuration storage table
private _getPmaTable ( ) : string
return string pma table name
    private function _getPmaTable()
    {
        $cfgRelation = PMA_getRelationsParam();
        if (!empty($cfgRelation['db']) && !empty($cfgRelation[$this->_tableType])) {
            return Util::backquote($cfgRelation['db']) . "." . Util::backquote($cfgRelation[$this->_tableType]);
        }
        return null;
    }