Piwik\Plugins\Live\Visitor::getCustomVariablePrettyKey PHP Method

getCustomVariablePrettyKey() private static method

private static getCustomVariablePrettyKey ( $key )
    private static function getCustomVariablePrettyKey($key)
    {
        $rename = array(ActionSiteSearch::CVAR_KEY_SEARCH_CATEGORY => Piwik::translate('Actions_ColumnSearchCategory'), ActionSiteSearch::CVAR_KEY_SEARCH_COUNT => Piwik::translate('Actions_ColumnSearchResultsCount'));
        if (isset($rename[$key])) {
            return $rename[$key];
        }
        return $key;
    }