<?php
namespace Faker\Provider\el_GR;
/**
* @see https://en.wikipedia.org/wiki/Telephone_numbers_in_Greece
* @see https://github.com/giggsey/libphonenumber-for-php/blob/master/src/data/PhoneNumberMetadata_GR.php
*/
class PhoneNumber extends \Faker\Provider\PhoneNumber
{
protected static $internationalCallPrefixes = ['', '+30'];
protected static $formats = [
'{{fixedLineNumber}}',
'{{mobileNumber}}',
'{{personalNumber}}',
'{{tollFreeNumber}}',
'{{sharedCostNumber}}',
'{{premiumRateNumber}}',
];
protected static $areaCodes = [
// Zone 22: Central Greece and the Aegean Islands
2221, 2222, 2223, 2224, 2226, 2227, 2228, 2229,
2231, 2232, 2233, 2234, 2235, 2236, 2237, 2238,
2241, 2242, 2243, 2244, 2245, 2246, 2247,
2251, 2252, 2253, 2254,
2261, 2262, 2263, 2264, 2265, 2266, 2267, 2268,
2271, 2272, 2273, 2274, 2275,
2281, 2282, 2283, 2284, 2285, 2286, 2287, 2288, 2289,
2291, 2292, 2293, 2294, 2295, 2296, 2297, 2298, 2299,
// Zone 23: Central Macedonia and Florina
231,
2321, 2322, 2323, 2324, 2325, 2327,
2331, 2332, 2333,
2341, 2343,
2351, 2352, 2353,
2371, 2372, 2373, 2374, 2375, 2376, 2377,
2381, 2382, 2384, 2385, 2386,
2391, 2392, 2393, 2394, 2395, 2396, 2397, 2399,
// Zone 24: Thessaly and West Macedonia (excluding Florina)
241,
2421, 2422, 2423, 2424, 2425, 2426, 2427, 2428,
2431, 2432, 2433, 2434,
2441, 2443, 2444, 2445,
2461, 2462, 2463, 2464, 2465, 2467, 2468,
2491, 2492, 2493, 2494, 2495,
// Zone 25: East Macedonia and Thrace
251,
2521, 2522, 2523, 2524,
2531, 2532, 2533, 2534, 2535,
2541, 2542, 2544,
2591, 2592, 2593, 2594,
2551, 2552, 2553, 2554, 2555, 2556,
// Zone 26: West Greece, Ionian Island and Epirus
261,
2621, 2622, 2623, 2624, 2625, 2626,
2631, 2632, 2634, 2635,
2661, 2662, 2663, 2664, 2665, 2666,
2691, 2692, 2693, 2694, 2695, 2696,
2641, 2642, 2643, 2644, 2645, 2646, 2647,
2651, 2653, 2654, 2655, 2656, 2657, 2658, 2659,
2671, 2674,
2681, 2682, 2683, 2684, 2685,
// Zone 27: Peloponnese and Kythera
271,
2721, 2722, 2723, 2724, 2725,
2731, 2732, 2733, 2734, 2735, 2736,
2741, 2742, 2743, 2744, 2745, 2746, 2747,
2751, 2752, 2753, 2754, 2755, 2757,
2761, 2763, 2765,
2791, 2792, 2795, 2797,
// Zone 28: Crete
281,
2821, 2822, 2823, 2824, 2825,
2831, 2832, 2833, 2834,
2841, 2842, 2843, 2844,
2891, 2892, 2893, 2894, 2895, 2897,
];
protected static $fixedLineFormats = [
'{{internationalCodePrefix}}21########',
'{{internationalCodePrefix}} 21# ### ####',
'{{internationalCodePrefix}}{{areaCode}}######',
'{{internationalCodePrefix}} {{areaCode}} ######',
];
protected static $mobileCodes = [
685, 687, 688, 689,
690, 691, 693, 694, 695, 696, 697, 698, 699,
];
protected static $mobileFormats = [
'{{internationalCodePrefix}}{{mobileCode}}#######',
'{{internationalCodePrefix}} {{mobileCode}} ### ####',
];
protected static $personalFormats = [
'{{internationalCodePrefix}}70########',
'{{internationalCodePrefix}} 70 #### ####',
];
protected static $tollFreeFormats = [
'{{internationalCodePrefix}}800#######',
'{{internationalCodePrefix}} 800 ### ####',
];
protected static $sharedCostCodes = [801, 806, 812, 825, 850, 875];
protected static $sharedCostFormats = [
'{{internationalCodePrefix}}{{sharedCostCode}}#######',
'{{internationalCodePrefix}} {{sharedCostCode}} ### ####',
];
protected static $premiumRateCodes = [901, 909];
protected static $premiumRateFormats = [
'{{internationalCodePrefix}}{{premiumRateCode}}#######',
'{{internationalCodePrefix}} {{premiumRateCode}} ### ####',
];
/**
* Generate a country calling code prefix.
*
* @example Prefix an empty string: ''
* @example Prefix the country calling code: '+30'
*
* @internal Used to generate phone numbers with or without prefixes.
*
* @return string
*/
public static function internationalCodePrefix()
{
return static::randomElement(static::$internationalCallPrefixes);
}
/**
* Generate an area code for a fixed line number.
*
* Doesn't include codes for Greater Athens Metropolitan Area (21#) because
* this zone uses 3 digits, and phone numbers have a different formatting.
*
* Area codes in all the other zones use 4 digits.
* The capital of each zone uses 3 digits and the 4th digit can be any number.
* The other areas in each zone use 4 digits, but not every number is valid for the 4th digit.
*
* @example Thessaloniki has code '231', so '2310' and '2313' are valid.
* @example Serres has code '232', but '2326', '2328' and '2329' are not valid.
*
* @return string
*/
public static function areaCode()
{
return static::numerify(
str_pad(static::randomElement(static::$areaCodes), 4, '#'),
);
}
/**
* Generate a fixed line number.
*
* Numbers can be generated with or without the international code prefix.
* Numbers can be generated with or without spaces between their parts.
* Numbers in Athens use a 3-digit area code, and can be formatted as 21# ### ####.
* Numbers in other areas use a 4-digit area code, and can be formatted as 2### ### ###.
*
* @example A number in Athens: '2101234567'
* @example A number in Thessaloniki: '2310123456'
* @example A number with spaces in Athens: '210 123 4567'
* @example A number with spaces in Thessaloniki: '2310 123 456'
* @example A number with international code prefix: '+302101234567'
* @example A number with international code prefix and spaces: '+30 2310 123 456'
*
* @return string
*/
public function fixedLineNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$fixedLineFormats),
)));
}
/**
* Generate a code for a mobile number.
*
* @internal Used to generate mobile numbers.
*
* @return string
*/
public static function mobileCode()
{
return static::randomElement(static::$mobileCodes);
}
/**
* Generate a mobile number.
*
* @example A mobile number: '6901234567'
* @example A mobile number with spaces: '690 123 4567'
* @example A mobile number with international code prefix: '+306901234567'
* @example A mobile number with international code prefix and spaces: '+30 690 123 4567'
*
* @return string
*/
public function mobileNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$mobileFormats),
)));
}
/**
* @deprecated Use PhoneNumber::mobileNumber() instead.
*/
public static function mobilePhoneNumber()
{
return static::numerify(
strtr(static::randomElement(static::$mobileFormats), [
'{{internationalCodePrefix}}' => static::internationalCodePrefix(),
'{{mobileCode}}' => static::mobileCode(),
]),
);
}
/**
* Generate a personal number.
*
* @example A personal number: '7012345678'
* @example A personal number with spaces: '70 1234 5678'
* @example A personal number with international code prefix: '+307012345678'
* @example A personal number with international code prefix and spaces: '+30 70 1234 5678'
*
* @return string
*/
public function personalNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$personalFormats),
)));
}
/**
* Generate a toll-free number.
*
* @example A toll-free number: '8001234567'
* @example A toll-free number with spaces: '800 123 4567'
* @example A toll-free number with international code prefix: '+308001234567'
* @example A toll-free number with international code prefix and spaces: '+30 800 123 4567'
*
* @return string
*/
public static function tollFreeNumber()
{
return ltrim(static::numerify(
strtr(static::randomElement(static::$tollFreeFormats), [
'{{internationalCodePrefix}}' => static::internationalCodePrefix(),
]),
));
}
/**
* Generate a code for a shared-cost number.
*
* @internal Used to generate shared-cost numbers.
*
* @return string
*/
public static function sharedCostCode()
{
return static::randomElement(static::$sharedCostCodes);
}
/**
* Generate a shared-cost number.
*
* @example A shared-cost number: '8011234567'
* @example A shared-cost number with spaces: '801 123 4567'
* @example A shared-cost number with international code prefix: '+308011234567'
* @example A shared-cost number with international code prefix and spaces: '+30 801 123 4567'
*
* @return string
*/
public function sharedCostNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$sharedCostFormats),
)));
}
/**
* Generate a code for a premium-rate number.
*
* @internal Used to generate premium-rate numbers.
*
* @return string
*/
public static function premiumRateCode()
{
return static::randomElement(static::$premiumRateCodes);
}
/**
* Generate a premium-rate number.
*
* @example A premium-rate number: '9011234567'
* @example A premium-rate number with spaces: '901 123 4567'
* @example A premium-rate number with international code prefix: '+309011234567'
* @example A premium-rate number with international code prefix and spaces: '+30 901 123 4567'
*
* @return string
*/
public function premiumRateNumber()
{
return ltrim(static::numerify($this->generator->parse(
static::randomElement(static::$premiumRateFormats),
)));
}
}
The Kueue Pay Payment Gateway is an innovative technology that facilitates seamless and secure transactions between merchants and their customers. It enables businesses to accept debit and credit card payments both online and in physical stores.
The Kueue Pay Payment Gateway acts as a bridge between a merchant’s website or point-of-sale system and the payment processing network. It securely transmits payment information, authorizes transactions, and provides real-time status updates.
The Kueue Pay Developer API empowers developers and entrepreneurs to integrate the Kueue Pay Payment Gateway directly into their websites or applications. This streamlines the payment process for customers and provides businesses with a customizable and efficient payment solution.
To access the Kueue Pay Developer API, you need to sign up for a developer account on our platform. Once registered, you’ll receive an API key that you can use to authenticate your API requests.
The Kueue Pay Developer API allows you to initiate payments, check the status of payments, and process refunds. You can create a seamless payment experience for your customers while maintaining control over transaction management.
Yes, the Kueue Pay Developer API is designed to accommodate businesses of varying sizes and industries. Whether you’re a small online store or a large enterprise, our API can be tailored to fit your specific payment needs.
The Kueue Pay Developer API is designed with simplicity and ease of use in mind. Our comprehensive documentation, code samples, and developer support resources ensure a smooth integration process for any web platform.
We offer competitive pricing plans for using the Kueue Pay Payment Gateway and Developer API. Details about fees and pricing tiers can be found on our developer portal.
Absolutely, the Kueue Pay Developer API offers customization options that allow you to tailor the payment experience to match your brand and user interface. You can create a seamless and cohesive payment journey for your customers.
We provide dedicated developer support to assist you with any issues or questions you may have during the API integration process. Reach out to our support team at developersupport@NFCPay.com for prompt assistance.
Remember, our goal is to empower your business with a robust and efficient payment solution. If you have any additional questions or concerns, feel free to explore our developer portal or contact our support team.