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: crmconfigdefault.php
<?php if (!defined('ABSPATH')) exit; include_once ( plugin_dir_path(__FILE__) . 'crmformshelper.php' ); class zcfadminhelperconfig extends zcfhelper { public function __construct() { } public static function zcfadminenus() { global $submenu; add_menu_page(ZCF_PLUGIN_NAME_SETTINGS, ZCF_PLUGIN_NAME, 'manage_options', ZCF_BASE_SLUG, array(__CLASS__, 'zcfmenuactivecheck'), plugins_url("assets/images/zohocrmicon.png", dirname(__FILE__))); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__('CRM Forms', 'zoho-crm-forms'), 'manage_options', 'crmforms-builder', array(__CLASS__, 'zcfmenuactivecheck')); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__('Forms Settings', 'zoho-crm-forms'), 'manage_options', 'formsettings-builder', array(__CLASS__, 'zcfmenuactivecheck')); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__('Logs', 'zoho-crm-forms'), 'manage_options', 'formsubmit-logs', array(__CLASS__, 'zcfmenuactivecheck')); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__('Logs1', 'zoho-crm-forms'), 'manage_options', 'crm-authentications', array(__CLASS__, 'zcfmenuactivecheck')); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__(' ', 'zoho-crm-forms'), 'manage_options', 'create-leadform-builder', array(__CLASS__, 'zcfmenuactivecheck')); add_submenu_page(null, ZCF_PLUGIN_NAME, esc_html__(' ', 'zoho-crm-forms'), 'manage_options', 'create-thirdpartyform-builder', array(__CLASS__, 'zcfmenuactivecheck')); unset($submenu[ZCF_BASE_SLUG][0]); ini_set('display_errors','Off'); ini_set('error_reporting', E_ALL ); } public static function zcfmenuactivecheck() { global $adminmenulable; $crmname = 'crmformswpbuilder'; $adminmenulable->zcf_setActivatedPlugin($crmname); $page = sanitize_text_field($_REQUEST['page']); $url = site_url(); $adminmenulable->zcfshowTopNaviMenus(); switch (sanitize_title($_REQUEST['page'])) { case 'crmforms-builder': $manuactive = "active"; $adminmenulable->zcfshowForms($manuactive); break; case 'formsettings-builder': $manuactive = "active"; $adminmenulable->zcfshowFormPropsettings($manuactive); break; case 'formsubmit-logs': $manuactive = "active"; $adminmenulable->zcfshowFormPropLogs($manuactive); break; case 'crm-authentications': $manuactive = "active"; $adminmenulable->zcfshowmanucrmauthentications($manuactive); break; case 'create-leadform-builder': $adminmenulable->zcfleadView(); break; case 'create-thirdpartyform-builder': $adminmenulable->zcfcontactFormView(); break; default: break; } return false; } public function zcfleadView() { global $adminmenulable; include ('crmwebformfields.php'); } public function zcfcontactFormView() { include ('crmcontactformfields.php'); } public function zcfshowForms() { include ('crmwebforms.php'); } public function zcfshowFormPropsettings() { include ('crmsettingstab.php'); } public function zcfshowFormPropLogs(){ include ('crmform-submitlogs.php'); } public function zcfshowmanucrmauthentications(){ include ('crmwebformgloablsetting.php'); } public function zcfshowTopNaviMenus() { global $wpdb; $crmname = 'crmformswpbuilder'; $crmSettings = get_option("zcf_crmformswpbuilder_settings"); $disabledMenu = ''; $disableAuthen=''; if (!$crmSettings ) { $disabledMenu = "pointer-events:none;opacity:0.8;"; $disableAuthen = "display:none"; } switch (sanitize_title($_REQUEST['page'])) { case 'crmforms-builder': $manuactive = "active"; $manuformsettingsactive = ""; $manucrmconfigactive = ""; $manuformsubmitlogactive=""; $manucrmauthentications = ""; break; case 'create-leadform-builder': $manuactive = "active"; $manuformsettingsactive = ""; $manucrmconfigactive = ""; $manuformsubmitlogactive=""; $manucrmauthentications = ""; break; case 'create-thirdpartyform-builder': $manuactive = "active"; $manuformsettingsactive = ""; $manucrmconfigactive = ""; $manuformsubmitlogactive=""; $manucrmauthentications = ""; break; case 'formsettings-builder': $manuactive = ""; $manuformsettingsactive = "active"; $manucrmconfigactive = ""; $manuformsubmitlogactive=""; $manucrmauthentications = ""; break; case 'formsubmit-logs': $manuactive = ""; $manuformsettingsactive = ""; $manuformsubmitlogactive = "active"; $manucrmconfigactive = ""; $manucrmauthentications = ""; break; case 'crm-authentications': $manuactive = ""; $manuformsettingsactive = ""; $manuformsubmitlogactive = ""; $manucrmconfigactive = ""; $manucrmauthentications = "active"; break; default: break; } $disableTab = $disableAuthen."".$disabledMenu; $admin_url = 'admin.php'; $modulearrayquery = "SELECT modifydate FROM zcf_zohocrm_list_module WHERE modifydate != %s"; $modulearray = $wpdb->get_results($wpdb->prepare($modulearrayquery, '0000-00-00')); if (sanitize_text_field($_REQUEST['page']) == 'crmforms-builder' || sanitize_text_field($_REQUEST['page']) == 'formsettings-builder') { echo '<div class="zoho-crm-form-builder"> <table class="commentabmenu"><tr> <td class="' . esc_html($manuactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=crmforms-builder') . '" id = "menu1" style="' . esc_html($disabledMenu) . '">' . esc_html__('Forms', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manuformsettingsactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=formsettings-builder') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('Settings', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manuformsubmitlogactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=formsubmit-logs') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('Logs', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manucrmauthentications) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=crm-authentications') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('authentication', 'zoho-crm-forms') . '</a> </td> </tr></table></div>'; } else if (sanitize_text_field($_REQUEST['page']) == 'create-leadform-builder') { echo '<div class="mainheader-webform"><a class="backbtn" href="admin.php?page=crmforms-builder"></a>Create a New Form </div>'; } else if (sanitize_text_field($_REQUEST['page']) == 'create-thirdpartyform-builder') { echo '<div class="mainheader-webform">Create a New Form </div>'; } else { echo '<div class="zoho-crm-form-builder"> <table class="commentabmenu"><tr> <td class="' . esc_html($manuactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=crmforms-builder') . '" id = "menu1" style="' . esc_html($disabledMenu) . '">' . esc_html__('Forms', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manuformsettingsactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=formsettings-builder') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('Settings', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manuformsubmitlogactive) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=formsubmit-logs') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('Logs', 'zoho-crm-forms') . '</a> </td> <td class="' . esc_html($manucrmauthentications) . '"> <a href="' . esc_url(admin_url() . 'admin.php?page=crm-authentications') . '" id = "menu2" style="' . esc_html($disabledMenu) . '">' . esc_html__('authentication', 'zoho-crm-forms') . '</a> </td> </tr></table></div>'; } } } add_action('admin_menu', array('zcfadminhelperconfig', 'zcfadminenus')); global $adminmenulable; $adminmenulable = new zcfadminhelperconfig();
Upload File
Create Folder