diff --git a/lib/countrycodes.php b/lib/countrycodes.php new file mode 100644 index 0000000..22c1322 --- /dev/null +++ b/lib/countrycodes.php @@ -0,0 +1,41 @@ + + * @contributor: stagprom + * @copyright Loic Blot 2014-2015 + */ + +namespace OCA\OcSms\Lib; + +class CountryCodes { + public static $codes = array( + "Algeria" => "+213", + "Belgium" => "+32", + "Brazil" => "+55", + "Canada" => "+1", + "Egypt" => "+20", + "France" => "+33", + "Germany" => "+49", + "Hong Kong" => "+852", + "India" => "+91", + "Italy" => "+39", + "Japan" => "+81", + "Mexico" => "+52", + "Morocco" => "+212", + "Norway" => "+47", + "Poland" => "+48", + "Russia" => "+7", + "South Korea" => "+82", + "South Sudan" => "+211", + "Spain" => "+34", + "Sweden" => "+46", + "Tunisia" => "+216", + "USA" => "+1", + + ); +};