Gdn_AuthenticationProviderModel::calculate PHP 메소드

calculate() 보호된 정적인 메소드

protected static calculate ( &$Row )
$Row
    protected static function calculate(&$Row)
    {
        if (!$Row) {
            return;
        }
        $Attributes = dbdecode($Row['Attributes']);
        if (is_array($Attributes)) {
            $Row = array_merge($Attributes, $Row);
        }
        unset($Row['Attributes']);
    }