X7ROOT File Manager
Current Path:
/home/gfecatvj/4abetter.us/wp-content/plugins/zoho-crm-forms/includes
home
/
gfecatvj
/
4abetter.us
/
wp-content
/
plugins
/
zoho-crm-forms
/
includes
/
📁
..
📄
crmapiintergration.php
(11.29 KB)
📄
crmconfigdefault.php
(9.01 KB)
📄
crmcontactform7.php
(9.46 KB)
📄
crmcontactformfields.php
(10.54 KB)
📄
crmcontactformfieldsmapping.php
(20.54 KB)
📄
crmcontactformgenerator.php
(34.99 KB)
📄
crmcontactforminte.php
(224 B)
📄
crmcustomfunctions.php
(43.94 KB)
📄
crmform-submitlogs.php
(910 B)
📄
crmformshelper.php
(749 B)
📄
crminstall.php
(218 B)
📄
crminterfunction.php
(10.78 KB)
📄
crmoauthentication.php
(6.92 KB)
📄
crmsettingstab.php
(8.17 KB)
📄
crmshortcodefunctions.php
(61.7 KB)
📄
crmwebformfields.php
(27.76 KB)
📄
crmwebformfieldsfuntions.php
(21.41 KB)
📄
crmwebformgloablsetting.php
(10.01 KB)
📄
crmwebforms.php
(23.45 KB)
📄
crmwebformsfieldsmapping.php
(22.45 KB)
📄
crmwebformshelper.php
(11.56 KB)
Editing: crmoauthentication.php
<?php function zcfgetAuthTokennew($code) { $configSetting = get_option("zcf_crmformswpbuilder_settings"); $zcrm_integ_client_id = get_option("zcrm_integ_client_id"); $zcrm_integ_client_secret = get_option("zcrm_integ_client_secret"); $zcrm_integ_domain_name = get_option("zcrm_integ_domain_name"); $zcrm_integ_authorization_uri = get_option("zcrm_integ_authorization_uri"); if($zcrm_integ_domain_name !=''){ $client_id = $zcrm_integ_client_id; $client_secret_key = $zcrm_integ_client_secret; $redirect_uri = $zcrm_integ_authorization_uri; $domain_setup = "https://accounts.zoho.".$zcrm_integ_domain_name; }else{ $client_id = '1000.A6YMBP1U9X5F58424HJDUEZ92JMVB6'; $client_secret_key = '685aec4faaa65c268eb31cfff1295d8c042799ad5e'; $redirect_uri = 'https://extensions.zoho.com/plugin/wordpress/callback'; $domain_setup = "https://accounts.zoho.com"; } if ($code != '') { $clientid = $client_id; $client_secret = $client_secret_key; $config['client_id'] = $clientid; $config['client_secret'] = $client_secret; $config['redirect_uri'] = $redirect_uri; $url =$domain_setup."/oauth/v2/token?code=$code&grant_type=authorization_code&client_id=" . $config['client_id'] . "&client_secret=" . $config['client_secret'] . "&redirect_uri=" . $config['redirect_uri'] . ""; $zfformsresponse = wp_remote_post( $url); $responsedata = json_decode(wp_remote_retrieve_body($zfformsresponse),true); $authtokensEncript = base64_encode(base64_encode(base64_encode($responsedata['access_token']))); $refreshtokenEncript = base64_encode(base64_encode(base64_encode($responsedata['refresh_token']))); $config['authtoken'] = $authtokensEncript; $config['refresh_token'] = $refreshtokenEncript; $config['created_time'] = date("Y-m-d H:i:s"); $config['valid_time'] = $responsedata['expires_in_sec']; $config['api_domain'] = $responsedata['api_domain']; update_option("zcf_crmformswpbuilder_settings", $config); } zcfsynModules(); } function zcfcheckAccessToken() { $configSetting = get_option("zcf_crmformswpbuilder_settings"); $refresh_token = base64_decode(base64_decode(base64_decode($configSetting['refresh_token']))); if ($configSetting['refresh_token'] != '') { $currentDate = strtotime(date("Y-m-d H:i:s")); $access_token = base64_decode(base64_decode(base64_decode($configSetting['authtoken']))); $refresh_token = base64_decode(base64_decode(base64_decode($configSetting['refresh_token']))); $created_time = strtotime($configSetting['created_time']); $created_time = $created_time + 3600; $plusOneHour = strtotime(date('Y-m-d H:i:s', $created_time)); $generateValue = zcfgenerateAccessToken(); $config['result_Type'] = true; $config['access_token'] = $generateValue['authtoken']; $config['refresh_token'] = $generateValue['refresh_token']; $config['client_id'] = $generateValue['client_id']; $config['client_secret'] = $generateValue['client_secret']; $config['oath_id'] = $generateValue['authtoken']; $config['result_Type'] = $generateValue['result_Type']; return $config; } } function zcfgenerateAccessToken() { $configSetting = get_option("zcf_crmformswpbuilder_settings"); $zcrm_integ_client_id = get_option("zcrm_integ_client_id"); $zcrm_integ_client_secret = get_option("zcrm_integ_client_secret"); $zcrm_integ_domain_name = get_option("zcrm_integ_domain_name"); $zcrm_integ_authorization_uri = get_option("zcrm_integ_authorization_uri"); if($zcrm_integ_domain_name !=''){ $client_id = $zcrm_integ_client_id; $client_secret_key = $zcrm_integ_client_secret; $redirect_uri = $zcrm_integ_authorization_uri; $domain_setup = "https://accounts.zoho.".$zcrm_integ_domain_name; }else{ $client_id = '1000.A6YMBP1U9X5F58424HJDUEZ92JMVB6'; $client_secret_key = '685aec4faaa65c268eb31cfff1295d8c042799ad5e'; $redirect_uri = 'https://extensions.zoho.com/plugin/wordpress/callback'; $domain_setup = "https://accounts.zoho.com"; } $currentDate = strtotime(date("Y-m-d H:i:s")); $refresh_token = base64_decode(base64_decode(base64_decode($configSetting['refresh_token']))); $client_id = $configSetting['client_id']; $client_secret = $configSetting['client_secret']; $redirect_uri = $redirect_uri; $url =$domain_setup."/oauth/v2/token?client_id=$client_id&client_secret=$client_secret&grant_type=refresh_token&refresh_token=$refresh_token&redirect_uri=$redirect_uri"; $zfformsresponse = wp_remote_post( $url); $response = json_decode(wp_remote_retrieve_body($zfformsresponse),true); $authtokensEncript = base64_encode(base64_encode(base64_encode($response['access_token']))); $refreshtokenEncript = base64_encode(base64_encode(base64_encode($refresh_token))); $config['authtoken'] = $authtokensEncript; $config['refresh_token'] = $refreshtokenEncript; $config['created_time'] = date("Y-m-d H:i:s"); $config['valid_time'] = $response['expires_in_sec']; $config['client_id'] = $client_id; $config['client_secret'] = $client_secret; $config['redirect_uri'] = $redirect_uri; $config['result_Type'] = 'TRUE'; if($config['authtoken'] !='' && $config['refresh_token'] !=''){ update_option("zcf_crmformswpbuilder_settings", $config); } return $config; } function zcfsynModules() { include_once(ZCF_BASE_DIR_URI . 'includes/crmapiintergration.php'); include_once(ZCF_BASE_DIR_URI . 'includes/crmwebformfieldsfuntions.php'); $client = new zcfaccountApi(); $core = new zcfcoreGetFields(); zcfcheckAccessToken(); $SettingsConfig = get_option("zcf_crmformswpbuilder_settings"); $authtoken = base64_decode(base64_decode(base64_decode($SettingsConfig['authtoken']))); $client->zcfGetModules($authtoken); $core->zcfgetUsersList(); global $wpdb; $resultquery = $wpdb->prepare(" SELECT DISTINCT(api_name), plural_label FROM zcf_zohocrm_list_module WHERE api_name != '' AND api_name NOT IN ( 'Visits', 'Vendors', 'Tasks', 'Social', 'Sales_Orders', 'Reports', 'Quotes', 'Purchase_Orders', 'WPjects', 'WPducts', 'Price_Books', 'Deals', 'Notes', 'Invoices', 'Home', 'Feeds', 'Events', 'Accounts', 'Emails', 'Documents', 'Dashboards', 'Campaigns', 'Calls', 'Attachments', 'ApWPvals', 'Activities' ) "); $resultaiss = $wpdb->get_results($resultquery ); foreach ($resultaiss as $key => $value) { $client->zcfgetAssignmentRule($authtoken, $value->api_name); } } ?>
Upload File
Create Folder