Spaces:
No application file
No application file
File size: 1,592 Bytes
d2897cd |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 |
<?php
namespace MauticPlugin\MauticFullContactBundle\Services;
/**
* This class handles all the Location information.
*
* @author Keith Casey <contrib@caseysoftware.com>
* @license http://www.apache.org/licenses/LICENSE-2.0 Apache
*/
class FullContact_Location extends FullContact_Base
{
/**
* Supported lookup methods.
*
* @var array
*/
protected $_supportedMethods = ['normalizer', 'enrichment'];
protected $_resourceUri = '';
/**
* This takes a name and breaks it into its individual parts.
*
* @param type $casing -> valid values are uppercase, lowercase, titlecase
*
* @return type
*/
public function normalizer($place, $includeZeroPopulation = false, $casing = 'titlecase')
{
$includeZeroPopulation = ($includeZeroPopulation) ? 'true' : 'false';
$this->_resourceUri = '/address/locationNormalizer.json';
$this->_execute(['place' => $place, 'includeZeroPopulation' => $includeZeroPopulation,
'method' => 'normalizer', 'casing' => $casing, ]);
return $this->response_obj;
}
public function enrichment($place, $includeZeroPopulation = false, $casing = 'titlecase')
{
$includeZeroPopulation = ($includeZeroPopulation) ? 'true' : 'false';
$this->_resourceUri = '/address/locationEnrichment.json';
$this->_execute(['place' => $place, 'includeZeroPopulation' => $includeZeroPopulation,
'method' => 'enrichment', 'casing' => $casing, ]);
return $this->response_obj;
}
}
|