| /plugin/ipban/ip-lib/src/Range/ |
| D | Single.php | 21 protected $address; variable in IPLib\\Range\\Single 28 protected function __construct(AddressInterface $address) argument 30 $this->address = $address; 43 $address = Factory::addressFromString($range); 44 if ($address !== null) { 45 $result = new static($address); 58 public static function fromAddress(AddressInterface $address) argument 60 return new static($address); 70 return $this->address->toString($long); 80 return $this->address->__toString(); [all …]
|
| D | Subnet.php | 83 $address = Factory::addressFromString($parts[0]); 84 if ($address !== null) { 88 $addressBytes = $address->getBytes(); 190 public function contains(AddressInterface $address) argument 193 if ($address->getAddressType() === $this->getAddressType()) { 194 $cmp = $address->getComparableString(); 301 $address = $this->getStartAddress(); 303 switch ($address->getAddressType()) { 305 … return $networkPrefix % 8 === 0 ? new Pattern($address, $address, 4 - $networkPrefix / 8) : null; 307 …return $networkPrefix % 16 === 0 ? new Pattern($address, $address, 8 - $networkPrefix / 16) : null;
|
| /plugin/swiftmail/Swift/ |
| D | RecipientList.php | 52 public function add($address, $name="", $where="to") argument 54 if ($address instanceof Swift_Address) 56 $address_str = trim(strtolower($address->getAddress())); 59 elseif (is_array($address)) 61 foreach ($address as $a) $this->add($a, $name, $where); 66 $address_str = (string) $address; 68 $address = new Swift_Address($address_str, $name); 74 $container[$address_str] = $address; 82 public function remove($address, $where="to") argument 84 if ($address instanceof Swift_Address) [all …]
|
| D | Address.php | 26 protected $address = null; variable in Swift_Address 38 public function __construct($address, $name=null) argument 40 $this->setAddress($address); 47 public function setAddress($address) argument 49 $this->address = trim((string)$address); 57 return $this->address; 85 return "<" . $this->address . ">"; 91 return $this->name . " <" . $this->address . ">"; 93 else return $this->address;
|
| /plugin/ipban/ip-lib/ |
| D | README.md | 44 ### Parse an address 46 To parse an IPv4 address: 49 $address = \IPLib\Address\IPv4::fromString('127.0.0.1'); 52 To parse an IPv6 address: 55 $address = \IPLib\Address\IPv6::fromString('::1'); 58 To parse an address in any format (IPv4 or IPv6): 61 $address = \IPLib\Factory::addressFromString('::1'); 62 $address = \IPLib\Factory::addressFromString('127.0.0.1'); 69 $address = \IPLib\Factory::addressFromString('::1'); 70 echo (string) $address->getPreviousAddress(); [all …]
|
| /plugin/swiftmail/Swift/Plugin/ |
| D | VerboseSending.php | 51 $address = $it->getValue(); 52 $pass = !in_array($address->getAddress(), $failed); 53 $this->getView()->paintResult($address->getAddress(), $pass); 59 $address = $it->getValue(); 60 $pass = !in_array($address->getAddress(), $failed); 61 $this->getView()->paintResult($address->getAddress(), $pass); 67 $address = $it->getValue(); 68 $pass = !in_array($address->getAddress(), $failed); 69 $this->getView()->paintResult($address->getAddress(), $pass);
|
| /plugin/swiftmail/Swift/Plugin/Decorator/ |
| D | Replacements.php | 41 public function addReplacements($address, $replacements) argument 43 $this->replacements[strtolower($address)] = (array)$replacements; 68 public function getReplacementsFor($address) argument 70 $address = strtolower($address); 71 if (array_key_exists($address, $this->replacements)) 73 return (array)$this->replacements[$address];
|
| /plugin/ipban/ip-lib/src/Address/ |
| D | IPv6.php | 77 * @param string|mixed $address the address to parse 83 public static function fromString($address, $mayIncludePort = true, $mayIncludeZoneID = true) argument 86 … if (is_string($address) && strpos($address, ':') !== false && strpos($address, ':::') === false) { 88 …if ($mayIncludePort && $address[0] === '[' && preg_match('/^\[(.+)\]:\d+$/', $address, $matches)) { 89 $address = $matches[1]; 92 $percentagePos = strpos($address, '%'); 94 $address = substr($address, 0, $percentagePos); 97 … if (preg_match('/^([0:]+:ffff:)(\d{1,3}\.\d{1,3}\.\d{1,3}\.\d{1,3})$/i', $address, $matches)) { 109 if (strpos($address, '::') === false) { 110 $chunks = explode(':', $address); [all …]
|
| D | IPv4.php | 21 protected $address; variable in IPLib\\Address\\IPv4 54 * @param string $address 56 protected function __construct($address) argument 58 $this->address = $address; 67 * @param string|mixed $address the address to parse 72 public static function fromString($address, $mayIncludePort = true) argument 75 if (is_string($address) && strpos($address, '.')) { 81 if (preg_match('/^'.$rx.'$/', $address, $matches)) { 137 return $this->address; 147 return $this->address; [all …]
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessAccountManagement/ |
| D | TargetLocation.php | 25 public $address; variable in Google\\Service\\MyBusinessAccountManagement\\TargetLocation 34 public function setAddress($address) argument 36 $this->address = $address; 43 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceNetworking/ |
| D | GoogleCloudServicenetworkingV1ConsumerConfigReservedRange.php | 25 public $address; variable in Google\\Service\\ServiceNetworking\\GoogleCloudServicenetworkingV1ConsumerConfigReservedRange 38 public function setAddress($address) argument 40 $this->address = $address; 47 return $this->address;
|
| D | BackendRule.php | 25 public $address; variable in Google\\Service\\ServiceNetworking\\BackendRule 52 public function setAddress($address) argument 54 $this->address = $address; 61 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Baremetalsolution/ |
| D | NetworkAddress.php | 25 public $address; variable in Google\\Service\\Baremetalsolution\\NetworkAddress 38 public function setAddress($address) argument 40 $this->address = $address; 47 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Directory/ |
| D | UserEmail.php | 25 public $address; variable in Google\\Service\\Directory\\UserEmail 42 public function setAddress($address) argument 44 $this->address = $address; 51 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Compute/Resource/ |
| D | GlobalAddresses.php | 38 * @param string $address Name of the address resource to delete. 53 public function delete($project, $address, $optParams = []) argument 55 $params = ['project' => $project, 'address' => $address]; 64 * @param string $address Name of the address resource to return. 68 public function get($project, $address, $optParams = []) argument 70 $params = ['project' => $project, 'address' => $address];
|
| D | Addresses.php | 100 * @param string $address Name of the address resource to delete. 115 public function delete($project, $region, $address, $optParams = []) argument 117 $params = ['project' => $project, 'region' => $region, 'address' => $address]; 126 * @param string $address Name of the address resource to return. 130 public function get($project, $region, $address, $optParams = []) argument 132 $params = ['project' => $project, 'region' => $region, 'address' => $address];
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceDirectory/ |
| D | Endpoint.php | 25 public $address; variable in Google\\Service\\ServiceDirectory\\Endpoint 46 public function setAddress($address) argument 48 $this->address = $address; 55 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/CloudTalentSolution/ |
| D | LocationFilter.php | 25 public $address; variable in Google\\Service\\CloudTalentSolution\\LocationFilter 41 public function setAddress($address) argument 43 $this->address = $address; 50 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/TrafficDirectorService/ |
| D | SocketAddress.php | 25 public $address; variable in Google\\Service\\TrafficDirectorService\\SocketAddress 50 public function setAddress($address) argument 52 $this->address = $address; 59 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/MyBusinessVerifications/ |
| D | ServiceBusinessContext.php | 28 public function setAddress(PostalAddress $address) argument 30 $this->address = $address; 37 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/OnDemandScanning/ |
| D | DeploymentOccurrence.php | 26 public $address; variable in Google\\Service\\OnDemandScanning\\DeploymentOccurrence 55 public function setAddress($address) argument 57 $this->address = $address; 64 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ContainerAnalysis/ |
| D | Deployment.php | 23 public $address; variable in Google\\Service\\ContainerAnalysis\\Deployment 31 public function setAddress($address) argument 33 $this->address = $address; 37 return $this->address;
|
| D | DeploymentOccurrence.php | 26 public $address; variable in Google\\Service\\ContainerAnalysis\\DeploymentOccurrence 55 public function setAddress($address) argument 57 $this->address = $address; 64 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/Dfareporting/ |
| D | SiteContact.php | 25 public $address; variable in Google\\Service\\Dfareporting\\SiteContact 58 public function setAddress($address) argument 60 $this->address = $address; 67 return $this->address;
|
| /plugin/authgooglesheets/vendor/google/apiclient-services/src/ServiceManagement/ |
| D | BackendRule.php | 25 public $address; variable in Google\\Service\\ServiceManagement\\BackendRule 52 public function setAddress($address) argument 54 $this->address = $address; 61 return $this->address;
|