PATH:
var
/
www
/
clients
/
client1
/
web1
/
web
/
wp-content
/
plugins
/
vxcash
/
public
<?php /** * Created by PhpStorm. * User: te * Date: 20.06.2016 * Time: 16:14 */ class Vxcash_Bas_Country { /** * @var string */ private $country = ''; /** * @var string */ private $number = ''; /** * @var string */ private $price = ''; /** * @var bool */ private $hasMobile = false; /** * @var string */ private $mobileNumber = ''; /** * @var string */ private $mobileExtension = ''; /** * @var string */ private $numberExtension = ''; /** * Vxcash_Bas_Country constructor. * * @param string $country * @param array $data */ public function __construct($country, $data) { $this->country = $country; $this->number = $data['number']; $this->numberExtension = $data['numberExtension']; $this->price = $data['infoShort']; $this->hasMobile = $data['mobileFlag']; $this->mobileNumber = $data['mobileNumber']; $this->mobileExtension = $data['mobileNumberExtension']; } /** * @return string */ public function getCountry() { return $this->country; } /** * @return string */ public function getNumber() { return $this->number; } /** * @return string */ public function getPrice() { return $this->price; } /** * @return boolean */ public function hasMobile() { return $this->hasMobile; } /** * @return string */ public function getMobileNumber() { return $this->mobileNumber; } /** * @return string */ public function getMobileExtension() { return $this->mobileExtension; } /** * @return string */ public function getNumberExtension() { return $this->numberExtension; } /** * @return string */ public function getPriceInfo() { return $this->price; } }
[+]
img
[-] class-vxcash-bas-dataprovider.php
[edit]
[-] class-vxcash-bas-country.php
[edit]
[-] class-vxcash-public.php
[edit]
[-] index.php
[edit]
[+]
js
[+]
partials
[-] class-vxcash-bas-host.php
[edit]
[-] class-vxcash-bas.php
[edit]
[+]
..
[+]
css
[-] class-vxcash-crosselling.php
[edit]