![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/mautic.corals.io/plugins/MauticFullContactBundle/Services/ |
<?php namespace MauticPlugin\MauticFullContactBundle\Services; /** * This class handles everything related to the Person lookup API. * * @author Keith Casey <[email protected]> * @license http://www.apache.org/licenses/LICENSE-2.0 Apache */ class FullContact_Person extends FullContact_Base { /** * Supported lookup methods. * * @var array */ protected $_supportedMethods = ['email', 'phone', 'twitter']; protected $_resourceUri = '/person.json'; public function lookupByEmail($search) { $this->_execute(['email' => $search, 'method' => 'email']); return $this->response_obj; } public function lookupByEmailMD5($search) { $this->_execute(['emailMD5' => $search, 'method' => 'email']); return $this->response_obj; } public function lookupByPhone($search) { $this->_execute(['phone' => $search, 'method' => 'phone']); return $this->response_obj; } public function lookupByTwitter($search) { $this->_execute(['twitter' => $search, 'method' => 'twitter']); return $this->response_obj; } }