PATH:
home
/
letacommog
/
crmleta
/
consumerportal
/
classes
/
Portal
/
apis
<?php /* +********************************************************************************** * The contents of this file are subject to the vtiger CRM Public License Version 1.2 * ("License.txt"); You may not use this file except in compliance with the License * The Original Code is: Vtiger CRM Open Source * The Initial Developer of the Original Code is Vtiger. * Portions created by Vtiger are Copyright (C) Vtiger. * All Rights Reserved. * ***********************************************************************************/ class Portal_FetchProfile_API extends Portal_Default_API { protected $allowedFields = array( 'contactFields' => array('firstname', 'lastname', 'email', 'secondaryemail', 'mobile', 'phone', 'imagename', 'imagedata', 'imagetype'), 'accountFields' => array('firstname', 'lastname', 'website', 'email1', 'phone', 'imagename', 'imagedata', 'imagetype', 'accountname'),); public function process(Portal_Request $request) { $result = Vtiger_Connector::getInstance()->fetchProfile(); $response = new Portal_Response(); $response->setResult($this->filterResponse($result, $this->allowedFields)); return $response; } protected function filterResponse($result, $allowedFields) { $data = array(); if (isset($result['customer_details'])) { foreach ($result['customer_details'] as $conKey => $conValues) { if (!in_array($conKey, $allowedFields['contactFields'])) { unset($result['customer_details'][$conKey]); } } } if (isset($result['company_details'])) { foreach ($result['company_details'] as $accKey => $accValues) { if (!in_array($accKey, $allowedFields['accountFields'])) { unset($result['company_details'][$accKey]); } } } $data['customer_details'] = $result['customer_details']; $data['company_details'] = $result['company_details']; if (isset($data['company_details'])) { foreach ($data['company_details'] as $label => $value) { if ($label == 'website' && !empty($value)) { $matchPattern = "^[\w]+:\/\/^"; preg_match($matchPattern, $value, $matches); if (!empty($matches[0])) { $value = $value; } else { $value = 'http://'.$value; } $data['company_details']['weburl'] = $value; } } } return $data; } }
[+]
..
[-] Default.php
[edit]
[-] DownloadFile.php
[edit]
[-] DescribeModule.php
[edit]
[-] FetchRecord.php
[edit]
[-] FetchReferenceRecords.php
[edit]
[-] FetchAnnouncement.php
[edit]
[-] FetchShortcuts.php
[edit]
[-] FetchCompanyTitle.php
[edit]
[-] AddComment.php
[edit]
[-] FetchProfile.php
[edit]
[-] FetchCompanyDetails.php
[edit]
[-] ForgotPassword.php
[edit]
[-] UploadAttachment.php
[edit]
[-] FetchOrganization.php
[edit]
[-] FetchRecentRecords.php
[edit]
[-] FetchComments.php
[edit]
[-] SaveRecord.php
[edit]
[-] FetchModules.php
[edit]
[-] FetchRelatedRecords.php
[edit]
[-] ChangePassword.php
[edit]
[-] FetchRelatedModules.php
[edit]
[-] FetchRecords.php
[edit]
[-] SearchRecords.php
[edit]
[-] Ping.php
[edit]
[-] FetchHistory.php
[edit]
[-] ExportRecords.php
[edit]
[-] UpdateLoginDetails.php
[edit]
[-] Login.php
[edit]