/*
*****************************************************************
*  Please add the following lines to the file
*
*  resources/domains/additionalfields.php (WHMCS 7)
*
*  or
*
*  includes/additionaldomainfields.php (WHMCS 6)
*
*  of your WHMCS installation to add support for .fi domains
*
*****************************************************************
*/

// .FI

$additionaldomainfields[".fi"][] = array(
    "Name" => "x-ficora-is-finnish",
    "DisplayName" => "Finnish person or organization",
    "Type" => "dropdown",
    "Options" => "no,yes",
    "Required" => true,
);

$additionaldomainfields[".fi"][] = array(
    "Name" => "x-ficora-type",
    "DisplayName" => "Legal Type",
    "Type" => "dropdown",
    "Options" => "privateperson|Private Person,company|Company,association|Association,institution|Institution,politicalparty|Political party,municipality|Municipality,government|Government,publiccommunity|Public community",
    "Required" => true,
);

$additionaldomainfields[".fi"][] = array(
    "Name" => "x-ficora-registernumber",
    "DisplayName" => "Identity Number, Date of Birth or Register Number",
    "Type" => "text",
    "Size" => "40",
    "Description" => "Depending on your <em>Legal Type</em> :<br> Please provide your <strong>birthdate</strong> if your are a private person and not finnish.<br> Please provide your <strong>identity number</strong> if your are a private person and finnish.<br> In all other cases, please provides your organizations <strong>registration number</strong>.",
    "Required" => true,
);

// .EU
// WHMCS 8.x does come with these extensions already included - only needed for older versions
/*
$additionaldomainfields[".eu"][] = array(
    "Name" => "x-eu-country-of-citizenship",
    "DisplayName" => "Country of EU Citizenship",
    "Type" => "dropdown",
    "Options" => ",AX|Åland Islands (AX),AT|Austria (AT),BE|Belgium (BE),BG|Bulgaria (BG),HR|Croatia (HR),CY|Cyprus (CY),CZ|Czech Republic (CZ),DK|Denmark (DK),EE|Estonia (EE),FI|Finland (FI),FR|France (FR),GF|French Guiana (GF),DE|Germany (DE),GI|Gibraltar (GI),GR|Greece (GR),GP|Guadeloupe (GP),HU|Hungary (HU),IS|Iceland (IS),IE|Ireland (IE),IT|Italy (IT),LV|Latvia (LV),LI|Liechtenstein (LI),LT|Lithuania (LT),LU|Luxembourg (LU),MT|Malta (MT),MQ|Martinique (MQ),YT|Mayotte (YT),NL|Netherlands (NL),NO|Norway (NO),PL|Poland (PL),PT|Portugal (PT),RE|Reunion (RE),RO|Romania (RO),MF|Saint Martin (MF),SK|Slovakia (Slovak Republic), (SK),SI|Slovenia (SI),ES|Spain (ES),SE|Sweden (SE),GB|United Kingdom (GB)",
    "Required" => false,
);
*/
