mirror of
https://github.com/nerzhul/ocsms.git
synced 2025-06-07 07:56:23 +00:00
83 lines
1.8 KiB
PHP
83 lines
1.8 KiB
PHP
<?php
|
|
/**
|
|
* ownCloud - ocsms
|
|
*
|
|
* This file is licensed under the Affero General Public License version 3 or
|
|
* later. See the COPYING file.
|
|
*
|
|
* @author Loic Blot <loic.blot@unix-experience.fr>
|
|
* @contributor: stagprom <https://github.com/stagprom/>
|
|
* @copyright Loic Blot 2014-2016
|
|
*/
|
|
|
|
namespace OCA\OcSms\Lib;
|
|
|
|
class CountryCodes {
|
|
public static $codes = array(
|
|
"Albania" => "+354",
|
|
"Algeria" => "+213",
|
|
"Andorra" => "+376",
|
|
"Armenia" => "+374",
|
|
"Austria" => "+43",
|
|
"Australia" => "+61",
|
|
"Belarus" => "+375",
|
|
"Belgium" => "+32",
|
|
"Bosnia and Herzegovina" => "+387",
|
|
"Brazil" => "+55",
|
|
"Bulgaria" => "+359",
|
|
"Canada" => "+1",
|
|
"Croatia" => "+385",
|
|
"Cyprus" => "+357",
|
|
"Czech Republic" => "+420",
|
|
"Denmark" => "+45",
|
|
"Egypt" => "+20",
|
|
"Estonia" => "+372",
|
|
"Finland" => "+357",
|
|
"France" => "+33",
|
|
"Germany" => "+49",
|
|
"Gibraltar" => "+350",
|
|
"Greece" => "+30",
|
|
"Hong Kong" => "+852",
|
|
"Hungary" => "+36",
|
|
"Iceland" => "+354",
|
|
"India" => "+91",
|
|
"Iran" => "+98",
|
|
"Ireland" => "+353",
|
|
"Italy" => "+39",
|
|
"Japan" => "+81",
|
|
"Kosovo" => "+383",
|
|
"Latvia" => "+371",
|
|
"Liechtenstein" => "+423",
|
|
"Lithuania" => "+370",
|
|
"Luxembourg" => "+352",
|
|
"Macedonia" => "+389",
|
|
"Malta" => "+356",
|
|
"Mexico" => "+52",
|
|
"Moldova" => "+373",
|
|
"Monaco" => "+377",
|
|
"Montenegro" => "+382",
|
|
"Morocco" => "+212",
|
|
"Netherlands" => "+31",
|
|
"Norway" => "+47",
|
|
"Poland" => "+48",
|
|
"Portugal" => "+351",
|
|
"Romania" => "+40",
|
|
"Russia" => "+7",
|
|
"San Marino" => "+378",
|
|
"Serbia" => "+381",
|
|
"Singapore" => "+65",
|
|
"Slovakia" => "+421",
|
|
"Slovenia" => "+386",
|
|
"South Africa" => "+27",
|
|
"South Korea" => "+82",
|
|
"South Sudan" => "+211",
|
|
"Spain" => "+34",
|
|
"Sweden" => "+46",
|
|
"Switzerland" => "+41",
|
|
"Tunisia" => "+216",
|
|
"Ukraine" => "+380",
|
|
"United Kingdom" => "+44",
|
|
"USA" => "+1",
|
|
);
|
|
};
|