Piwik\Plugins\Live\Visitor::getCustomVariablePrettyKey PHP 메소드

getCustomVariablePrettyKey() 개인적인 정적인 메소드

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;
    }