- Added comprehensive AI Assistant system (aiassist/ directory): * Vector search and embedding capabilities * Typebot proxy integration * Elastic search functionality * Message classification and chat history * MCP proxy for external integrations - Implemented Court Status API (GetCourtStatus.php): * Real-time court document status checking * Integration with external court systems * Comprehensive error handling and logging - Enhanced S3 integration: * Improved file backup system with metadata * Batch processing capabilities * Enhanced error logging and recovery * Copy operations with URL fixing - Added Telegram contact creation API - Improved error logging across all modules - Enhanced callback system for AI responses - Extensive backup file storage with timestamps - Updated documentation and README files - File storage improvements: * Thousands of backup files with proper metadata * Fix operations for broken file references * Project-specific backup and recovery systems * Comprehensive file integrity checking Total: 26,461+ files added/modified including AWS SDK, vendor dependencies, and extensive backup system.
1511 lines
104 KiB
PHP
1511 lines
104 KiB
PHP
<?php
|
|
/* +***********************************************************************************
|
|
* The contents of this file are subject to the vtiger CRM Public License Version 1.0
|
|
* ("License"); 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.
|
|
* *********************************************************************************** */
|
|
vimport('~~modules/Users/DefaultDataPopulator.php');
|
|
vimport('~~include/PopulateComboValues.php');
|
|
|
|
class Install_InitSchema_Model {
|
|
|
|
/**
|
|
* Function starts applying schema changes
|
|
*/
|
|
public static function initialize() {
|
|
global $adb;
|
|
$adb = PearDatabase::getInstance();
|
|
$adb->createTables("schema/DatabaseSchema.xml");
|
|
|
|
$defaultDataPopulator = new DefaultDataPopulator();
|
|
$defaultDataPopulator->create_tables();
|
|
|
|
self::createDefaultUsersAccess();
|
|
|
|
// create and populate combo tables
|
|
$combo = new PopulateComboValues();
|
|
$combo->create_tables();
|
|
$combo->create_nonpicklist_tables();
|
|
|
|
create_tab_data_file();
|
|
create_parenttab_data_file();
|
|
|
|
// default report population
|
|
vimport('~~modules/Reports/PopulateReports.php');
|
|
|
|
// default customview population
|
|
vimport('~~modules/CustomView/PopulateCustomView.php');
|
|
|
|
// ensure required sequences are created (adodb creates them as needed, but if
|
|
// creation occurs within a transaction we get problems
|
|
$adb->getUniqueID("vtiger_crmentity");
|
|
$adb->getUniqueID("vtiger_seactivityrel");
|
|
$adb->getUniqueID("vtiger_freetags");
|
|
|
|
$currencyName = $_SESSION['config_file_info']['currency_name'];
|
|
$currencyCode = $_SESSION['config_file_info']['currency_code'];
|
|
$currencySymbol = $_SESSION['config_file_info']['currency_symbol'];
|
|
$adb->pquery("INSERT INTO vtiger_currency_info VALUES (?,?,?,?,?,?,?,?)", array($adb->getUniqueID("vtiger_currency_info"),
|
|
$currencyName,$currencyCode,$currencySymbol,1,'Active','-11','0'));
|
|
|
|
Install_InitSchema_Model::installDefaultEventsAndWorkflows();
|
|
}
|
|
|
|
/**
|
|
* Function upgrades the schema with changes post 540 version
|
|
*/
|
|
public static function upgrade() {
|
|
$migrateVersions = Migration_Module_Model::getInstance('')->getAllowedMigrationVersions();
|
|
|
|
define('VTIGER_UPGRADE', true);
|
|
$oldVersion = null;
|
|
foreach($migrateVersions as $migrateVersion) {
|
|
foreach($migrateVersion as $newVersion => $versionLabel) {
|
|
// Not ready?
|
|
if ($oldVersion == null) {
|
|
$oldVersion = $newVersion;
|
|
break;
|
|
}
|
|
$oldVersion = str_replace(array('.', ' '), '', $oldVersion);
|
|
$newVersion = str_replace(array('.', ' '), '', $newVersion);
|
|
$filename = "modules/Migration/schema/".$oldVersion."_to_".$newVersion.".php";
|
|
if(is_file($filename)) {
|
|
include($filename);
|
|
}
|
|
$oldVersion = $newVersion;
|
|
}
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Function creates default user's Role, Profiles
|
|
*/
|
|
public static function createDefaultUsersAccess() {
|
|
$adb = PearDatabase::getInstance();
|
|
$roleId1 = $adb->getUniqueID("vtiger_role");
|
|
$roleId2 = $adb->getUniqueID("vtiger_role");
|
|
$roleId3 = $adb->getUniqueID("vtiger_role");
|
|
$roleId4 = $adb->getUniqueID("vtiger_role");
|
|
$roleId5 = $adb->getUniqueID("vtiger_role");
|
|
|
|
$profileId1 = $adb->getUniqueID("vtiger_profile");
|
|
$profileId2 = $adb->getUniqueID("vtiger_profile");
|
|
$profileId3 = $adb->getUniqueID("vtiger_profile");
|
|
$profileId4 = $adb->getUniqueID("vtiger_profile");
|
|
|
|
// SalesPlatform.ru begin
|
|
$adb->pquery("INSERT INTO vtiger_role VALUES(?,?,?,0)", array('H'.$roleId1,vtranslate('LBL_ORGANISATION','Install'),'H'.$roleId1));
|
|
$adb->pquery("INSERT INTO vtiger_role VALUES(?,?,?,1)", array('H'.$roleId2,vtranslate('LBL_CEO','Install'),'H'.$roleId1.'::H'.$roleId2));
|
|
$adb->pquery("INSERT INTO vtiger_role VALUES(?,?,?,2)", array('H'.$roleId3,vtranslate('LBL_VICE_PRESIDENT','Install'),'H'.$roleId1.'::H'.$roleId2.'::H'.$roleId3));
|
|
$adb->pquery("INSERT INTO vtiger_role VALUES(?,?,?,3)", array('H'.$roleId4,vtranslate('LBL_SALES_MANAGER','Install'),'H'.$roleId1.'::H'.$roleId2.'::H'.$roleId3.'::H'.$roleId4));
|
|
$adb->pquery("INSERT INTO vtiger_role VALUES(?,?,?,,4)", array('H'.$roleId5,vtranslate('LBL_SALES_PERSON','Install'),'H'.$roleId1.'::H'.$roleId2.'::H'.$roleId3.'::H'.$roleId4.'::H'.$roleId5));
|
|
// $adb->pquery("INSERT INTO vtiger_role VALUES('H".$roleId1."','Organisation','H".$roleId1."',0)", array());
|
|
// $adb->pquery("INSERT INTO vtiger_role VALUES('H".$roleId2."','CEO','H".$roleId1."::H".$roleId2."',1)", array());
|
|
// $adb->pquery("INSERT INTO vtiger_role VALUES('H".$roleId3."','Vice President','H".$roleId1."::H".$roleId2."::H".$roleId3."',2)", array());
|
|
// $adb->pquery("INSERT INTO vtiger_role VALUES('H".$roleId4."','Sales Manager','H".$roleId1."::H".$roleId2."::H".$roleId3."::H".$roleId4."',3)", array());
|
|
// $adb->pquery("INSERT INTO vtiger_role VALUES('H".$roleId5."','Sales Person','H".$roleId1."::H".$roleId2."::H".$roleId3."::H".$roleId4."::H".$roleId5."',4)", array());
|
|
// SalesPlatform.ru end
|
|
|
|
//INSERT INTO vtiger_role2profile
|
|
$adb->pquery("INSERT INTO vtiger_role2profile VALUES ('H".$roleId2."',".$profileId1.")", array());
|
|
$adb->pquery("INSERT INTO vtiger_role2profile VALUES ('H".$roleId3."',".$profileId2.")", array());
|
|
$adb->pquery("INSERT INTO vtiger_role2profile VALUES ('H".$roleId4."',".$profileId2.")", array());
|
|
$adb->pquery("INSERT INTO vtiger_role2profile VALUES ('H".$roleId5."',".$profileId2.")", array());
|
|
|
|
//New Security Start
|
|
//Inserting into vtiger_profile vtiger_table
|
|
// SalesPlatform.ru begin
|
|
$adb->pquery("INSERT INTO vtiger_profile VALUES (?,?,?)", array($profileId1,vtranslate('LBL_ADMINISTRATOR','Install'),vtranslate('LBL_ADMIN_PROFILE','Install')));
|
|
$adb->pquery("INSERT INTO vtiger_profile VALUES (?,?,?)", array($profileId2,vtranslate('LBL_SALES_PROFILE','Install'),vtranslate('LBL_PROFILE_RELATED_TO_SALE','Install')));
|
|
$adb->pquery("INSERT INTO vtiger_profile VALUES (?,?,?)", array($profileId3,vtranslate('LBL_SUPPORT_PROFILE','Install'),vtranslate('LBL_PROFILE_RELATED_TO_SUPPORT','Install')));
|
|
$adb->pquery("INSERT INTO vtiger_profile VALUES (?,?,?)", array($profileId4,vtranslate('LBL_GUEST_PROFILE','Install'),vtranslate('LBL_GUEST_PROFILE_FOR_TEST_USERS','Install')));
|
|
// $adb->pquery("INSERT INTO vtiger_profile VALUES ('".$profileId1."','Administrator','Admin Profile')", array());
|
|
// $adb->pquery("INSERT INTO vtiger_profile VALUES ('".$profileId2."','Sales Profile','Profile Related to Sales')", array());
|
|
// $adb->pquery("INSERT INTO vtiger_profile VALUES ('".$profileId3."','Support Profile','Profile Related to Support')", array());
|
|
// $adb->pquery("INSERT INTO vtiger_profile VALUES ('".$profileId4."','Guest Profile','Guest Profile for Test Users')", array());
|
|
// SalesPlatform.ru end
|
|
|
|
//Inserting into vtiger_profile2gloabal permissions
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId1."',1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId1."',2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId2."',1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId2."',2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId3."',1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId3."',2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId4."',1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2globalpermissions VALUES ('".$profileId4."',2,1)", array());
|
|
|
|
//Inserting into vtiger_profile2tab
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",7,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",13,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",14,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",15,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",16,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",18,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",19,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",20,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",21,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",22,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",23,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",24,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",25,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",26,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",27,0)", array());
|
|
// SalesPlatform.ru end Added perms to PDF templates in installer
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId1.",30,1)", array());
|
|
// SalesPlatform.ru end
|
|
|
|
//Inserting into vtiger_profile2tab
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",7,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",13,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",14,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",15,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",16,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",18,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",19,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",20,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",21,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",22,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",23,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",24,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",25,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",26,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",27,0)", array());
|
|
// SalesPlatform.ru end Added perms to PDF templates in installer
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId2.",30,1)", array());
|
|
// SalesPlatform.ru end
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",7,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",13,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",14,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",15,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",16,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",18,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",19,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",20,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",21,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",22,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",23,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",24,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",25,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",26,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",27,0)", array());
|
|
// SalesPlatform.ru end Added perms to PDF templates in installer
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId3.",30,1)", array());
|
|
// SalesPlatform.ru end
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",7,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",13,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",14,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",15,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",16,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",18,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",19,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",20,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",21,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",22,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",23,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",24,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",25,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",26,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",27,0)", array());
|
|
// SalesPlatform.ru end Added perms to PDF templates in installer
|
|
$adb->pquery("INSERT INTO vtiger_profile2tab VALUES (".$profileId4.",30,1)", array());
|
|
// SalesPlatform.ru end
|
|
|
|
//Inserting into vtiger_profile2standardpermissions Adminsitrator
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",2,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",2,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",2,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",2,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",2,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",4,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",4,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",4,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",4,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",4,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",6,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",6,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",6,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",6,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",6,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",7,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",7,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",7,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",7,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",7,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",8,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",8,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",8,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",8,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",8,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",9,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",9,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",9,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",9,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",9,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",13,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",13,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",13,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",13,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",13,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",14,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",14,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",14,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",14,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",14,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",15,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",15,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",15,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",15,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",15,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",16,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",16,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",16,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",16,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",16,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",18,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",18,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",18,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",18,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",18,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",19,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",19,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",19,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",19,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",19,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",20,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",20,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",20,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",20,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",20,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",21,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",21,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",21,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",21,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",21,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",22,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",22,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",22,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",22,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",22,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",23,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",23,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",23,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",23,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",23,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",25,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",25,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",25,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",25,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",25,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",26,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",26,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",26,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",26,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId1.",26,4,0)", array());
|
|
|
|
//INSERT INTO Profile 2 std permissions for Sales User
|
|
//Help Desk Create/Delete not allowed. Read-Only
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",2,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",2,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",2,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",2,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",2,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",4,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",4,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",4,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",4,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",4,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",6,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",6,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",6,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",6,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",6,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",7,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",7,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",7,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",7,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",7,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",8,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",8,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",8,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",8,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",8,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",9,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",9,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",9,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",9,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",9,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",13,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",13,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",13,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",13,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",13,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",14,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",14,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",14,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",14,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",14,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",15,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",15,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",15,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",15,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",15,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",16,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",16,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",16,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",16,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",16,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",18,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",18,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",18,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",18,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",18,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",19,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",19,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",19,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",19,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",19,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",20,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",20,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",20,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",20,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",20,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",21,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",21,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",21,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",21,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",21,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",22,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",22,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",22,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",22,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",22,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",23,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",23,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",23,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",23,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",23,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",25,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",25,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",25,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",25,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",25,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",26,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",26,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",26,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",26,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId2.",26,4,0)", array());
|
|
|
|
//Inserting into vtiger_profile2std for Support Profile
|
|
// Potential is read-only
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",2,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",2,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",2,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",2,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",2,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",4,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",4,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",4,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",4,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",4,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",6,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",6,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",6,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",6,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",6,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",7,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",7,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",7,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",7,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",7,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",8,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",8,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",8,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",8,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",8,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",9,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",9,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",9,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",9,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",9,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",13,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",13,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",13,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",13,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",13,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",14,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",14,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",14,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",14,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",14,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",15,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",15,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",15,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",15,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",15,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",16,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",16,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",16,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",16,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",16,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",18,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",18,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",18,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",18,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",18,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",19,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",19,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",19,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",19,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",19,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",20,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",20,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",20,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",20,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",20,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",21,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",21,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",21,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",21,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",21,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",22,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",22,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",22,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",22,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",22,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",23,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",23,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",23,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",23,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",23,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",25,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",25,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",25,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",25,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",25,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",26,0,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",26,1,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",26,2,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",26,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId3.",26,4,0)", array());
|
|
|
|
//Inserting into vtiger_profile2stdper for Profile Guest Profile
|
|
//All Read-Only
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",2,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",2,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",2,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",2,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",2,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",4,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",4,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",4,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",4,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",4,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",6,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",6,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",6,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",6,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",6,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",7,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",7,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",7,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",7,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",7,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",8,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",8,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",8,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",8,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",8,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",9,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",9,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",9,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",9,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",9,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",13,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",13,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",13,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",13,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",13,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",14,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",14,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",14,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",14,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",14,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",15,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",15,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",15,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",15,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",15,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",16,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",16,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",16,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",16,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",16,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",18,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",18,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",18,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",18,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",18,4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",19,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",19,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",19,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",19,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",19,4,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",20,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",20,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",20,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",20,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",20,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",21,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",21,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",21,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",21,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",21,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",22,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",22,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",22,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",22,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",22,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",23,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",23,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",23,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",23,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",23,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",25,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",25,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",25,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",25,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",25,4,0)", array());
|
|
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",26,0,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",26,1,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",26,2,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",26,3,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2standardpermissions VALUES (".$profileId4.",26,4,0)", array());
|
|
|
|
//Inserting into vtiger_profile 2 utility Admin
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",2,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",2,6,0)", array());
|
|
// SalesPlatform.ru begin Added Potentials merge perms
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",2,8,0)", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",4,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",4,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",6,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",6,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",7,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",7,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",8,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",7,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",6,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",4,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",13,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",13,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",13,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",14,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",14,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",7,9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",18,5,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",18,6,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",7,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",6,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",4,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",2,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",13,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",14,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",18,10,0)", array());
|
|
|
|
|
|
//Inserting into vtiger_profile2utility Sales Profile
|
|
//Import Export Not Allowed.
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",2,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",2,6,1)", array());
|
|
// SalesPlatform.ru begin Added Potentials merge perms
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",2,8,0)", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",4,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",4,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",6,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",6,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",7,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",7,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",8,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",7,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",6,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",4,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",13,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",13,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",13,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",14,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",14,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",7,9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",18,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",18,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",7,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",6,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",4,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",2,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",13,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",14,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId2.",18,10,0)", array());
|
|
|
|
//Inserting into vtiger_profile2utility Support Profile
|
|
//Import Export Not Allowed.
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",2,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",2,6,1)", array());
|
|
// SalesPlatform.ru begin Added Potentials merge perms
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",2,8,0)", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",4,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",4,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",6,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",6,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",7,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",7,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",8,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",7,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",6,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",4,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",13,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",13,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",13,8,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",14,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",14,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",7,9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",18,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",18,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",7,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",6,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",4,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",2,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",13,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",14,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId3.",18,10,0)", array());
|
|
|
|
|
|
//Inserting into vtiger_profile2utility Guest Profile Read-Only
|
|
//Import Export BusinessCar Not Allowed.
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",2,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",2,6,1)", array());
|
|
// SalesPlatform.ru begin Added Potentials merge perms
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId1.",2,8,0)", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",4,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",4,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",6,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",6,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",7,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",7,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",8,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",7,8,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",6,8,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",4,8,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",13,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",13,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",13,8,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",14,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",14,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",7,9,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",18,5,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",18,6,1)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",7,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",6,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",4,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",2,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",13,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",14,10,0)", array());
|
|
$adb->pquery("INSERT INTO vtiger_profile2utility VALUES (".$profileId4.",18,10,0)", array());
|
|
|
|
|
|
// Invalidate any cached information
|
|
VTCacheUtils::clearRoleSubordinates();
|
|
|
|
$adminPassword = $_SESSION['config_file_info']['password'];
|
|
$userDateFormat = $_SESSION['config_file_info']['dateformat'];
|
|
$userTimeZone = $_SESSION['config_file_info']['timezone'];
|
|
//Fix for http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7974
|
|
$userFirstName = $_SESSION['config_file_info']['firstname'];
|
|
$userLastName = $_SESSION['config_file_info']['lastname'];
|
|
$userLanguage = $_SESSION['config_file_info']['default_language'];
|
|
// create default admin user
|
|
$user = CRMEntity::getInstance('Users');
|
|
//Fix for http://trac.vtiger.com/cgi-bin/trac.cgi/ticket/7974
|
|
$user->column_fields["first_name"] = $userFirstName;
|
|
$user->column_fields["last_name"] = $userLastName;
|
|
//Ends
|
|
$user->column_fields["user_name"] = 'admin';
|
|
$user->column_fields["status"] = 'Active';
|
|
$user->column_fields["is_admin"] = 'on';
|
|
$user->column_fields["user_password"] = $adminPassword;
|
|
$user->column_fields["time_zone"] = $userTimeZone;
|
|
$user->column_fields["language"] = $userLanguage;
|
|
// SalesPlatform.ru begin
|
|
$user->column_fields["holidays"] = vtranslate('holidays_setting','Install');
|
|
$user->column_fields["workdays"] = vtranslate('workdays_setting','Install');
|
|
//$user->column_fields["holidays"] = 'de,en_uk,fr,it,us,';
|
|
//$user->column_fields["workdays"] = '0,1,2,3,4,5,6,';
|
|
// SalesPlatform.ru end
|
|
$user->column_fields["weekstart"] = '1';
|
|
$user->column_fields["namedays"] = '';
|
|
$user->column_fields["currency_id"] = 1;
|
|
$user->column_fields["reminder_interval"] = '1 Minute';
|
|
$user->column_fields["reminder_next_time"] = date('Y-m-d H:i');
|
|
$user->column_fields["date_format"] = $userDateFormat;
|
|
// SalesPlatform.ru begin
|
|
$user->column_fields["hour_format"] = vtranslate('hour_format_setting','Install');
|
|
//$user->column_fields["hour_format"] = 'am/pm';
|
|
// SalesPlatform.ru end
|
|
$user->column_fields["start_hour"] = '08:00';
|
|
$user->column_fields["end_hour"] = '23:00';
|
|
$user->column_fields["imagename"] = '';
|
|
$user->column_fields["internal_mailer"] = '1';
|
|
$user->column_fields["activity_view"] = 'This Week';
|
|
$user->column_fields["lead_view"] = 'Today';
|
|
|
|
$adminEmail = $_SESSION['config_file_info']['admin_email'];
|
|
if($adminEmail == '') $adminEmail ="admin@vtigeruser.com";
|
|
$user->column_fields["email1"] = $adminEmail;
|
|
// SalesPlatform.ru begin
|
|
$roleQuery = "SELECT roleid FROM vtiger_role WHERE rolename='".vtranslate('LBL_CEO','Install')."'";
|
|
//$roleQuery = "SELECT roleid FROM vtiger_role WHERE rolename='CEO'";
|
|
// SalesPlatform.ru end
|
|
$adb->checkConnection();
|
|
$adb->database->SetFetchMode(ADODB_FETCH_ASSOC);
|
|
$roleResult = $adb->pquery($roleQuery, array());
|
|
$roleId = $adb->query_result($roleResult,0,"roleid");
|
|
$user->column_fields["roleid"] = $roleId;
|
|
|
|
// SalesPlatform.ru begin: Add default currency formatting
|
|
$user->column_fields["currency_grouping_pattern"] = '123456789';
|
|
$user->column_fields["currency_decimal_separator"] = ",";
|
|
$user->column_fields["currency_grouping_separator"] = '\'';
|
|
$user->column_fields["currency_symbol_placement"] = '1.0$';
|
|
$user->column_fields["dayoftheweek"] = 'Monday';
|
|
// SalesPlatform.ru end
|
|
|
|
$user->save("Users");
|
|
$adminUserId = $user->id;
|
|
|
|
//Inserting into vtiger_groups table
|
|
$groupId1 = $adb->getUniqueID("vtiger_users");
|
|
$groupId2 = $adb->getUniqueID("vtiger_users");
|
|
$groupId3 = $adb->getUniqueID("vtiger_users");
|
|
|
|
// SalesPlatform.ru begin
|
|
$adb->pquery("INSERT INTO vtiger_groups VALUES (?,?,?)", array($groupId1,vtranslate('LBL_TEAM_SELLING','Install'),vtranslate('LBL_GROUP_RELATED_TO_SALES','Install')));
|
|
//$adb->pquery("INSERT INTO vtiger_groups VALUES ('".$groupId1."','Team Selling','Group Related to Sales')", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_group2role VALUES ('".$groupId1."','H".$roleId4."')", array());
|
|
$adb->pquery("INSERT INTO vtiger_group2rs VALUES ('".$groupId1."','H".$roleId5."')", array());
|
|
|
|
// SalesPlatform.ru begin
|
|
$adb->pquery("INSERT INTO vtiger_groups VALUES (?,?,?)", array($groupId2,vtranslate('LBL_MARKETING_GROUP','Install'),vtranslate('LBL_GROUP_RELATED_TO_MARKETING_ACTIVITIES','Install')));
|
|
//$adb->pquery("INSERT INTO vtiger_groups VALUES ('".$groupId2."','Marketing Group','Group Related to Marketing Activities')", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_group2role VALUES ('".$groupId2."','H".$roleId2."')", array());
|
|
$adb->pquery("INSERT INTO vtiger_group2rs VALUES ('".$groupId2."','H".$roleId3."')", array());
|
|
|
|
// SalesPlatform.ru begin
|
|
$adb->pquery("INSERT INTO vtiger_groups VALUES (?,?,?)", array($groupId3,vtranslate('LBL_SUPPORT_GROUP','Install'),vtranslate('LBL_GROUP_RELATED_TO_PROVIDING_SUPPORT','Install')));
|
|
//$adb->pquery("INSERT INTO vtiger_groups VALUES ('".$groupId3."','Support Group','Group Related to providing Support to Customers')", array());
|
|
// SalesPlatform.ru end
|
|
$adb->pquery("INSERT INTO vtiger_group2role VALUES ('".$groupId3."','H".$roleId3."')", array());
|
|
$adb->pquery("INSERT INTO vtiger_group2rs VALUES ('".$groupId3."','H".$roleId3."')", array());
|
|
|
|
// Setting user group relation for admin user
|
|
$adb->pquery("INSERT INTO vtiger_users2group VALUES (?,?)", array($groupId2, $adminUserId), array());
|
|
|
|
//Creating the flat files for admin user
|
|
createUserPrivilegesfile($adminUserId);
|
|
createUserSharingPrivilegesfile($adminUserId);
|
|
|
|
//INSERT INTO vtiger_profile2field
|
|
insertProfile2field($profileId1);
|
|
insertProfile2field($profileId2);
|
|
insertProfile2field($profileId3);
|
|
insertProfile2field($profileId4);
|
|
|
|
insert_def_org_field();
|
|
}
|
|
|
|
/**
|
|
* Function add necessary schema for event handlers and workflows, also add defaul workflows
|
|
*/
|
|
public static function installDefaultEventsAndWorkflows() {
|
|
$adb = PearDatabase::getInstance();
|
|
|
|
// Register All the Events
|
|
self::registerEvents($adb);
|
|
|
|
// Register All the Entity Methods
|
|
self::registerEntityMethods($adb);
|
|
|
|
// Populate Default Workflows
|
|
self::populateDefaultWorkflows($adb);
|
|
|
|
// Populate Links
|
|
self::populateLinks();
|
|
|
|
// Set Help Information for Fields
|
|
self::setFieldHelpInfo();
|
|
|
|
// Register Cron Jobs
|
|
self::registerCronTasks();
|
|
}
|
|
|
|
/**
|
|
* Register all the Cron Tasks
|
|
*/
|
|
public static function registerCronTasks() {
|
|
vimport('~~vtlib/Vtiger/Cron.php');
|
|
// SalesPlatform.ru begin localization
|
|
Vtiger_Cron::register( 'Workflow', 'cron/modules/com_vtiger_workflow/com_vtiger_workflow.service', 900, 'com_vtiger_workflow', 1, 1, vtranslate('LBL_FREQUENCY_WORKFLOW','Install'));
|
|
Vtiger_Cron::register( 'RecurringInvoice', 'cron/modules/SalesOrder/RecurringInvoice.service', 43200, 'SalesOrder', 1, 2, vtranslate('LBL_FREQUENCY_RECURRING_INVOICE','Install'));
|
|
Vtiger_Cron::register( 'SendReminder', 'cron/SendReminder.service', 900, 'Calendar', 1, 3, vtranslate('LBL_FREQUENCY_SEND_REMINDER','Install'));
|
|
Vtiger_Cron::register( 'ScheduleReports', 'cron/modules/Reports/ScheduleReports.service', 900, 'Reports', 1, 4, vtranslate('LBL_FREQUENCY_SCHEDULE_REPORTS','Install'));
|
|
Vtiger_Cron::register( 'MailScanner', 'cron/MailScanner.service', 900, 'Settings', 1, 5, vtranslate('LBL_FREQUENCY_MAIL_SCANNER','Install'));
|
|
//Vtiger_Cron::register( 'Workflow', 'cron/modules/com_vtiger_workflow/com_vtiger_workflow.service', 900, 'com_vtiger_workflow', 1, 1, 'Recommended frequency for Workflow is 15 mins');
|
|
//Vtiger_Cron::register( 'RecurringInvoice', 'cron/modules/SalesOrder/RecurringInvoice.service', 43200, 'SalesOrder', 1, 2, 'Recommended frequency for RecurringInvoice is 12 hours');
|
|
//Vtiger_Cron::register( 'SendReminder', 'cron/SendReminder.service', 900, 'Calendar', 1, 3, 'Recommended frequency for SendReminder is 15 mins');
|
|
//Vtiger_Cron::register( 'ScheduleReports', 'cron/modules/Reports/ScheduleReports.service', 900, 'Reports', 1, 4, 'Recommended frequency for ScheduleReports is 15 mins');
|
|
//Vtiger_Cron::register( 'MailScanner', 'cron/MailScanner.service', 900, 'Settings', 1, 5, 'Recommended frequency for MailScanner is 15 mins');
|
|
// SalesPlatform.ru end
|
|
}
|
|
|
|
/**
|
|
* Function registers all the event handlers
|
|
*/
|
|
static function registerEvents($adb) {
|
|
vimport('~~include/events/include.inc');
|
|
$em = new VTEventsManager($adb);
|
|
|
|
// Registering event for Recurring Invoices
|
|
$em->registerHandler('vtiger.entity.aftersave', 'modules/SalesOrder/RecurringInvoiceHandler.php', 'RecurringInvoiceHandler');
|
|
|
|
//Registering Entity Delta handler for before save and after save events of the record to track the field value changes
|
|
$em->registerHandler('vtiger.entity.beforesave', 'data/VTEntityDelta.php', 'VTEntityDelta');
|
|
$em->registerHandler('vtiger.entity.aftersave', 'data/VTEntityDelta.php', 'VTEntityDelta');
|
|
|
|
// Workflow manager
|
|
$dependentEventHandlers = array('VTEntityDelta');
|
|
$dependentEventHandlersJson = Zend_Json::encode($dependentEventHandlers);
|
|
$em->registerHandler('vtiger.entity.aftersave', 'modules/com_vtiger_workflow/VTEventHandler.inc', 'VTWorkflowEventHandler',
|
|
'',$dependentEventHandlersJson);
|
|
|
|
//Registering events for On modify
|
|
$em->registerHandler('vtiger.entity.afterrestore', 'modules/com_vtiger_workflow/VTEventHandler.inc', 'VTWorkflowEventHandler');
|
|
|
|
// Registering event for HelpDesk - To reset from_portal value
|
|
$em->registerHandler('vtiger.entity.aftersave.final', 'modules/HelpDesk/HelpDeskHandler.php', 'HelpDeskHandler');
|
|
}
|
|
|
|
/**
|
|
* Function registers all the work flow custom entity methods
|
|
* @param <PearDatabase> $adb
|
|
*/
|
|
static function registerEntityMethods($adb) {
|
|
vimport("~~modules/com_vtiger_workflow/include.inc");
|
|
vimport("~~modules/com_vtiger_workflow/tasks/VTEntityMethodTask.inc");
|
|
vimport("~~modules/com_vtiger_workflow/VTEntityMethodManager.inc");
|
|
$emm = new VTEntityMethodManager($adb);
|
|
|
|
// Registering method for Updating Inventory Stock
|
|
$emm->addEntityMethod("SalesOrder","UpdateInventory","include/InventoryHandler.php","handleInventoryProductRel");//Adding EntityMethod for Updating Products data after creating SalesOrder
|
|
$emm->addEntityMethod("Invoice","UpdateInventory","include/InventoryHandler.php","handleInventoryProductRel");//Adding EntityMethod for Updating Products data after creating Invoice
|
|
|
|
// Register Entity Method for Customer Portal Login details email notification task
|
|
$emm->addEntityMethod("Contacts","SendPortalLoginDetails","modules/Contacts/ContactsHandler.php","Contacts_sendCustomerPortalLoginDetails");
|
|
|
|
// Register Entity Method for Email notification on ticket creation from Customer portal
|
|
$emm->addEntityMethod("HelpDesk","NotifyOnPortalTicketCreation","modules/HelpDesk/HelpDeskHandler.php","HelpDesk_nofifyOnPortalTicketCreation");
|
|
|
|
// Register Entity Method for Email notification on ticket comment from Customer portal
|
|
$emm->addEntityMethod("HelpDesk","NotifyOnPortalTicketComment","modules/HelpDesk/HelpDeskHandler.php","HelpDesk_notifyOnPortalTicketComment");
|
|
|
|
// Register Entity Method for Email notification to Record Owner on ticket change, which is not from Customer portal
|
|
$emm->addEntityMethod("HelpDesk","NotifyOwnerOnTicketChange","modules/HelpDesk/HelpDeskHandler.php","HelpDesk_notifyOwnerOnTicketChange");
|
|
|
|
// Register Entity Method for Email notification to Related Customer on ticket change, which is not from Customer portal
|
|
$emm->addEntityMethod("HelpDesk","NotifyParentOnTicketChange","modules/HelpDesk/HelpDeskHandler.php","HelpDesk_notifyParentOnTicketChange");
|
|
}
|
|
|
|
/**
|
|
* Function adds default system workflows
|
|
* @param <PearDatabase> $adb
|
|
*/
|
|
static function populateDefaultWorkflows($adb) {
|
|
vimport("~~modules/com_vtiger_workflow/include.inc");
|
|
vimport("~~modules/com_vtiger_workflow/tasks/VTEntityMethodTask.inc");
|
|
vimport("~~modules/com_vtiger_workflow/VTEntityMethodManager.inc");
|
|
vimport("~~modules/com_vtiger_workflow/VTTaskManager.inc");
|
|
|
|
// register the workflow tasks
|
|
$taskTypes = array();
|
|
$defaultModules = array('include' => array(), 'exclude'=>array());
|
|
$createToDoModules = array('include' => array("Leads","Accounts","Potentials","Contacts","HelpDesk","Campaigns","Quotes","PurchaseOrder","SalesOrder","Invoice"), 'exclude'=>array("Calendar", "FAQ", "Events"));
|
|
$createEventModules = array('include' => array("Leads","Accounts","Potentials","Contacts","HelpDesk","Campaigns"), 'exclude'=>array("Calendar", "FAQ", "Events"));
|
|
|
|
$taskTypes[] = array("name"=>"VTEmailTask", "label"=>"Send Mail", "classname"=>"VTEmailTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTEmailTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTEmailTask.tpl", "modules"=>$defaultModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTEntityMethodTask", "label"=>"Invoke Custom Function", "classname"=>"VTEntityMethodTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTEntityMethodTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTEntityMethodTask.tpl", "modules"=>$defaultModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTCreateTodoTask", "label"=>"Create Todo", "classname"=>"VTCreateTodoTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTCreateTodoTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTCreateTodoTask.tpl", "modules"=>$createToDoModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTCreateEventTask", "label"=>"Create Event", "classname"=>"VTCreateEventTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTCreateEventTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTCreateEventTask.tpl", "modules"=>$createEventModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTUpdateFieldsTask", "label"=>"Update Fields", "classname"=>"VTUpdateFieldsTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTUpdateFieldsTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTUpdateFieldsTask.tpl", "modules"=>$defaultModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTCreateEntityTask", "label"=>"Create Entity", "classname"=>"VTCreateEntityTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTCreateEntityTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTCreateEntityTask.tpl", "modules"=>$defaultModules, "sourcemodule"=>'');
|
|
$taskTypes[] = array("name"=>"VTSMSTask", "label"=>"SMS Task", "classname"=>"VTSMSTask", "classpath"=>"modules/com_vtiger_workflow/tasks/VTSMSTask.inc", "templatepath"=>"com_vtiger_workflow/taskforms/VTSMSTask.tpl", "modules"=>$defaultModules, "sourcemodule"=>'SMSNotifier');
|
|
|
|
foreach ($taskTypes as $taskType) {
|
|
VTTaskType::registerTaskType($taskType);
|
|
}
|
|
|
|
// Creating Workflow for Updating Inventory Stock for Invoice
|
|
$vtWorkFlow = new VTWorkflowManager($adb);
|
|
$invWorkFlow = $vtWorkFlow->newWorkFlow("Invoice");
|
|
$invWorkFlow->test = '[{"fieldname":"subject","operation":"does not contain","value":"`!`"}]';
|
|
//Salesplatform.ru begin
|
|
$invWorkFlow->description = vtranslate('LBL_UPDATE_INVENTORY_PRODUCTS','Install');
|
|
//$invWorkFlow->description = "UpdateInventoryProducts On Every Save";
|
|
//Salesplatform.ru end
|
|
$invWorkFlow->defaultworkflow = 1;
|
|
$vtWorkFlow->save($invWorkFlow);
|
|
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEntityMethodTask', $invWorkFlow->id);
|
|
$task->active=true;
|
|
$task->methodName = "UpdateInventory";
|
|
$tm->saveTask($task);
|
|
|
|
// Creating Workflow for Accounts when Notifyowner is true
|
|
$vtaWorkFlow = new VTWorkflowManager($adb);
|
|
$accWorkFlow = $vtaWorkFlow->newWorkFlow("Accounts");
|
|
$accWorkFlow->test = '[{"fieldname":"notify_owner","operation":"is","value":"true:boolean"}]';
|
|
// SalesPlatform.ru begin
|
|
$accWorkFlow->description = vtranslate('LBL_NOTIFYOWNER_FLAG','Install');
|
|
//$accWorkFlow->description = "Send Email to user when Notifyowner is True";
|
|
// SalesPlatform.ru end
|
|
$accWorkFlow->executionCondition=2;
|
|
$accWorkFlow->defaultworkflow = 1;
|
|
$vtaWorkFlow->save($accWorkFlow);
|
|
$id1=$accWorkFlow->id;
|
|
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEmailTask',$accWorkFlow->id);
|
|
$task->active=true;
|
|
$task->methodName = "NotifyOwner";
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
// SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_REGARDING_ACCOUNT_CREATION_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_REGARDING_ACCOUNT_CREATION_CONTENT','Install');
|
|
$task->summary = vtranslate('LBL_REGARDING_ACCOUNT_CREATION_SUMMARY','Install');
|
|
//$task->subject = "Regarding Account Creation";
|
|
//$task->content = "An Account has been assigned to you on vtigerCRM<br>Details of account are :<br><br>".
|
|
// "AccountId:".'<b>$account_no</b><br>'."AccountName:".'<b>$accountname</b><br>'."Rating:".'<b>$rating</b><br>'.
|
|
// "Industry:".'<b>$industry</b><br>'."AccountType:".'<b>$accounttype</b><br>'.
|
|
// "Description:".'<b>$description</b><br><br><br>'."Thank You<br>Admin";
|
|
//$task->summary="An account has been created ";
|
|
// SalesPlatform.ru end
|
|
$tm->saveTask($task);
|
|
$adb->pquery("update com_vtiger_workflows set defaultworkflow=? where workflow_id=?",array(1,$id1));
|
|
|
|
// Creating Workflow for Contacts when Notifyowner is true
|
|
|
|
$vtcWorkFlow = new VTWorkflowManager($adb);
|
|
$conWorkFlow = $vtcWorkFlow->newWorkFlow("Contacts");
|
|
// SalesPlatform.ru begin
|
|
$conWorkFlow->summary = vtranslate('LBL_REGARDING_CONTACT_CREATION_SUMMARY','Install');
|
|
//$conWorkFlow->summary="A contact has been created ";
|
|
// SalesPlatform.ru end
|
|
$conWorkFlow->executionCondition=2;
|
|
$conWorkFlow->test = '[{"fieldname":"notify_owner","operation":"is","value":"true:boolean"}]';
|
|
// SalesPlatform.ru begin
|
|
$conWorkFlow->description = vtranslate('LBL_NOTIFYOWNER_FLAG','Install');
|
|
//$conWorkFlow->description = "Send Email to user when Notifyowner is True";
|
|
// SalesPlatform.ru end
|
|
$conWorkFlow->defaultworkflow = 1;
|
|
$vtcWorkFlow->save($conWorkFlow);
|
|
$id1=$conWorkFlow->id;
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEmailTask',$conWorkFlow->id);
|
|
$task->active=true;
|
|
$task->methodName = "NotifyOwner";
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
// SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_REGARDING_CONTACT_CREATION_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_REGARDING_CONTACT_CREATION_CONTENT','Install');
|
|
$task->summary = vtranslate('LBL_REGARDING_CONTACT_CREATION_SUMMARY','Install');
|
|
//$task->subject = "Regarding Contact Creation";
|
|
//$task->content = "An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>".
|
|
// "Contact Id:".'<b>$contact_no</b><br>'."LastName:".'<b>$lastname</b><br>'."FirstName:".'<b>$firstname</b><br>'.
|
|
// "Lead Source:".'<b>$leadsource</b><br>'.
|
|
// "Department:".'<b>$department</b><br>'.
|
|
// "Description:".'<b>$description</b><br><br><br>'."Thank You<br>Admin";
|
|
//$task->summary="An contact has been created ";
|
|
// SalesPlatform.ru end
|
|
$tm->saveTask($task);
|
|
$adb->pquery("update com_vtiger_workflows set defaultworkflow=? where workflow_id=?",array(1,$id1));
|
|
|
|
|
|
// Creating Workflow for Contacts when PortalUser is true
|
|
|
|
$vtcWorkFlow = new VTWorkflowManager($adb);
|
|
$conpuWorkFlow = $vtcWorkFlow->newWorkFlow("Contacts");
|
|
$conpuWorkFlow->test = '[{"fieldname":"portal","operation":"is","value":"true:boolean"}]';
|
|
// SalesPlatform.ru begin
|
|
$conpuWorkFlow->description = vtranslate('LBL_PORTALUSER_FLAG','Install');
|
|
//$conpuWorkFlow->description = "Send Email to user when Portal User is True";
|
|
// SalesPlatform.ru end
|
|
$conpuWorkFlow->executionCondition=2;
|
|
$conpuWorkFlow->defaultworkflow = 1;
|
|
$vtcWorkFlow->save($conpuWorkFlow);
|
|
$id1=$conpuWorkFlow->id;
|
|
|
|
$taskManager = new VTTaskManager($adb);
|
|
$task = $taskManager->createTask('VTEntityMethodTask', $id1);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->description = vtranslate('LBL_CUSTOMER_PORTAL_LOGIN_DETAILS','Install');
|
|
//$task->summary = 'Email Customer Portal Login Details';
|
|
//SalesPlatform.ru end
|
|
$task->methodName = "SendPortalLoginDetails";
|
|
$taskManager->saveTask($task);
|
|
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEmailTask',$conpuWorkFlow->id);
|
|
|
|
$task->active=true;
|
|
$task->methodName = "NotifyOwner";
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
// SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_CONTENT','Install');
|
|
$task->summary = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_SUMMARY','Install');
|
|
//$task->subject = "Regarding Contact Assignment";
|
|
//$task->content = "An Contact has been assigned to you on vtigerCRM<br>Details of Contact are :<br><br>".
|
|
// "Contact Id:".'<b>$contact_no</b><br>'."LastName:".'<b>$lastname</b><br>'."FirstName:".'<b>$firstname</b><br>'.
|
|
// "Lead Source:".'<b>$leadsource</b><br>'.
|
|
// "Department:".'<b>$department</b><br>'.
|
|
// "Description:".'<b>$description</b><br><br><br>'."And <b>CustomerPortal Login Details</b> is sent to the " .
|
|
// "EmailID :-".'$email<br>'."<br>Thank You<br>Admin";
|
|
//$task->summary="An contact has been created ";
|
|
// SalesPlatform.ru end
|
|
$tm->saveTask($task);
|
|
$adb->pquery("update com_vtiger_workflows set defaultworkflow=? where workflow_id=?",array(1,$id1));
|
|
|
|
// Creating Workflow for Potentials
|
|
|
|
$vtcWorkFlow = new VTWorkflowManager($adb);
|
|
$potentialWorkFlow = $vtcWorkFlow->newWorkFlow("Potentials");
|
|
// SalesPlatform.ru begin
|
|
$potentialWorkFlow->description = vtranslate('LBL_POTENTIAL_FLAG','Install');
|
|
//$potentialWorkFlow->description = "Send Email to users on Potential creation";
|
|
// SalesPlatform.ru end
|
|
$potentialWorkFlow->executionCondition=1;
|
|
$potentialWorkFlow->defaultworkflow = 1;
|
|
$vtcWorkFlow->save($potentialWorkFlow);
|
|
$id1=$potentialWorkFlow->id;
|
|
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEmailTask',$potentialWorkFlow->id);
|
|
|
|
$task->active=true;
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
// SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_REGARDING_POTENTIAL_ASSIGNED_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_REGARDING_POTENTIAL_ASSIGNED_CONTENT','Install');
|
|
$task->summary = vtranslate('LBL_REGARDING_POTENTIAL_ASSIGNED_SUMMARY','Install');
|
|
//$task->subject = "Regarding Potential Assignment";
|
|
//$task->content = "An Potential has been assigned to you on vtigerCRM<br>Details of Potential are :<br><br>".
|
|
// "Potential No:".'<b>$potential_no</b><br>'."Potential Name:".'<b>$potentialname</b><br>'.
|
|
// "Amount:".'<b>$amount</b><br>'.
|
|
// "Expected Close Date:".'<b>$closingdate</b><br>'.
|
|
// "Type:".'<b>$opportunity_type</b><br><br><br>'.
|
|
// "Description :".'$description<br>'."<br>Thank You<br>Admin";
|
|
|
|
//$task->summary="An Potential has been created ";
|
|
// SalesPlatform.ru end
|
|
$tm->saveTask($task);
|
|
|
|
$workflowManager = new VTWorkflowManager($adb);
|
|
$taskManager = new VTTaskManager($adb);
|
|
|
|
// Contact workflow on creation/modification
|
|
$contactWorkFlow = $workflowManager->newWorkFlow("Contacts");
|
|
$contactWorkFlow->test = '';
|
|
//SalesPlatform.ru begin
|
|
$contactWorkFlow->description = vtranslate('LBL_WORKFLOW_FOR_CONTACT_CREATION_AND_MODIFICATION','Install');
|
|
//$contactWorkFlow->description = "Workflow for Contact Creation or Modification";
|
|
//SalesPlatform.ru end
|
|
$contactWorkFlow->executionCondition = VTWorkflowManager::$ON_EVERY_SAVE;
|
|
$contactWorkFlow->defaultworkflow = 1;
|
|
$workflowManager->save($contactWorkFlow);
|
|
|
|
$tm = new VTTaskManager($adb);
|
|
$task = $tm->createTask('VTEmailTask',$contactWorkFlow->id);
|
|
|
|
$task->active=true;
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
$task->subject = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_CONTENT','Install');
|
|
$task->summary = vtranslate('LBL_REGARDING_CONTACT_ASSIGNED_SUMMARY','Install');
|
|
$tm->saveTask($task);
|
|
$adb->pquery("update com_vtiger_workflows set defaultworkflow=? where workflow_id=?",array(1,$id1));
|
|
|
|
// Trouble Tickets workflow on creation from Customer Portal
|
|
$helpDeskWorkflow = $workflowManager->newWorkFlow("HelpDesk");
|
|
$helpDeskWorkflow->test = '[{"fieldname":"from_portal","operation":"is","value":"true:boolean"}]';
|
|
//SalesPlatform.ru begin
|
|
$helpDeskWorkflow->description = vtranslate('LBL_WORKFLOW_FOR_TICKET_CREATION','Install');
|
|
//$helpDeskWorkflow->description = "Workflow for Ticket Created from Portal";
|
|
//SalesPlatform.ru end
|
|
$helpDeskWorkflow->executionCondition = VTWorkflowManager::$ON_FIRST_SAVE;
|
|
$helpDeskWorkflow->defaultworkflow = 1;
|
|
$workflowManager->save($helpDeskWorkflow);
|
|
|
|
$task = $taskManager->createTask('VTEntityMethodTask', $helpDeskWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFYOWNER_TICKET_CREATION','Install');
|
|
//$task->summary = 'Notify Record Owner and the Related Contact when Ticket is created from Portal';
|
|
//SalesPlatform.ru end
|
|
$task->methodName = "NotifyOnPortalTicketCreation";
|
|
$taskManager->saveTask($task);
|
|
|
|
// Trouble Tickets workflow on ticket update from Customer Portal
|
|
$helpDeskWorkflow = $workflowManager->newWorkFlow("HelpDesk");
|
|
$helpDeskWorkflow->test = '[{"fieldname":"from_portal","operation":"is","value":"true:boolean"}]';
|
|
//SalesPlatform.ru begin
|
|
$helpDeskWorkflow->description = vtranslate('LBL_WORKFLOW_FOR_TICKET_UPDATE','Install');
|
|
//$helpDeskWorkflow->description = "Workflow for Ticket Updated from Portal";
|
|
//SalesPlatform.ru end
|
|
$helpDeskWorkflow->executionCondition = VTWorkflowManager::$ON_MODIFY;
|
|
$helpDeskWorkflow->defaultworkflow = 1;
|
|
$workflowManager->save($helpDeskWorkflow);
|
|
|
|
$task = $taskManager->createTask('VTEntityMethodTask', $helpDeskWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFYOWNER_COMMENT_ADDITION','Install');
|
|
//$task->summary = 'Notify Record Owner when Comment is added to a Ticket from Customer Portal';
|
|
//SalesPlatform.ru end
|
|
$task->methodName = "NotifyOnPortalTicketComment";
|
|
$taskManager->saveTask($task);
|
|
|
|
// Trouble Tickets workflow on ticket change, which is not from Customer Portal - Both Record Owner and Related Customer
|
|
$helpDeskWorkflow = $workflowManager->newWorkFlow("HelpDesk");
|
|
$helpDeskWorkflow->test = '[{"fieldname":"from_portal","operation":"is","value":"false:boolean"}]';
|
|
//SalesPlatform.ru begin
|
|
$helpDeskWorkflow->description = vtranslate('LBL_WORKFLOW_FOR_TICKET_CHANGE','Install');
|
|
//$helpDeskWorkflow->description = "Workflow for Ticket Change, not from the Portal";
|
|
//SalesPlatform.ru end
|
|
$helpDeskWorkflow->executionCondition = VTWorkflowManager::$ON_EVERY_SAVE;
|
|
$helpDeskWorkflow->defaultworkflow = 1;
|
|
$workflowManager->save($helpDeskWorkflow);
|
|
|
|
$task = $taskManager->createTask('VTEntityMethodTask', $helpDeskWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFYOWNER_TICKET_CHANGE','Install');
|
|
//$task->summary = 'Notify Record Owner on Ticket Change, which is not done from Portal';
|
|
//SalesPlatform.ru end
|
|
$task->methodName = "NotifyOwnerOnTicketChange";
|
|
$taskManager->saveTask($task);
|
|
|
|
$task = $taskManager->createTask('VTEntityMethodTask', $helpDeskWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFYCUSTOMER_TICKET_CHANGE','Install');
|
|
//$task->summary = 'Notify Related Customer on Ticket Change, which is not done from Portal';
|
|
//SalesPlatform.ru end
|
|
$task->methodName = "NotifyParentOnTicketChange";
|
|
$taskManager->saveTask($task);
|
|
|
|
// Events workflow when Send Notification is checked
|
|
$eventsWorkflow = $workflowManager->newWorkFlow("Events");
|
|
$eventsWorkflow->test = '[{"fieldname":"sendnotification","operation":"is","value":"true:boolean"}]';
|
|
//SalesPlatform.ru begin
|
|
$eventsWorkflow->description = vtranslate('LBL_WORKFLOW_FOR_ACTIVITY','Install');
|
|
//$eventsWorkflow->description = "Workflow for Events when Send Notification is True";
|
|
//SalesPlatform.ru end
|
|
$eventsWorkflow->executionCondition = VTWorkflowManager::$ON_EVERY_SAVE;
|
|
$eventsWorkflow->defaultworkflow = 1;
|
|
$workflowManager->save($eventsWorkflow);
|
|
|
|
$task = $taskManager->createTask('VTEmailTask', $eventsWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFICATION_EMAIL_ACTIVITY_SUMMARY','Install');
|
|
//$task->summary = 'Send Notification Email to Record Owner';
|
|
//SalesPlatform.ru end
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
//SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_NOTIFICATION_EMAIL_ACTIVITY_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_NOTIFICATION_EMAIL_ACTIVITY_CONTENT','Install');
|
|
//$task->subject = "Event : \$subject";
|
|
//$task->content = '$(assigned_user_id : (Users) first_name) $(assigned_user_id : (Users) last_name) ,<br/>'
|
|
// .'<b>Activity Notification Details:</b><br/>'
|
|
// .'Subject : $subject<br/>'
|
|
// .'Start date and time : $date_start $time_start ( $(general : (__VtigerMeta__) dbtimezone) ) <br/>'
|
|
// .'End date and time : $due_date $time_end ( $(general : (__VtigerMeta__) dbtimezone) ) <br/>'
|
|
// .'Status : $eventstatus <br/>'
|
|
// .'Priority : $taskpriority <br/>'
|
|
// .'Related To : $(parent_id : (Leads) lastname) $(parent_id : (Leads) firstname) $(parent_id : (Accounts) accountname) '
|
|
// .'$(parent_id : (Potentials) potentialname) $(parent_id : (HelpDesk) ticket_title) <br/>'
|
|
// .'Contacts List : $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname) <br/>'
|
|
// .'Location : $location <br/>'
|
|
// .'Description : $description';
|
|
//SalesPlatform.ru end
|
|
$taskManager->saveTask($task);
|
|
|
|
// Calendar workflow when Send Notification is checked
|
|
$calendarWorkflow = $workflowManager->newWorkFlow("Calendar");
|
|
$calendarWorkflow->test = '[{"fieldname":"sendnotification","operation":"is","value":"true:boolean"}]';
|
|
//SalesPlatform.ru begin
|
|
$calendarWorkflow->description = vtranslate('LBL_WORKFLOW_FOR_TASK','Install');
|
|
//$calendarWorkflow->description = "Workflow for Calendar Todos when Send Notification is True";
|
|
//SalesPlatform.ru end
|
|
$calendarWorkflow->executionCondition = VTWorkflowManager::$ON_EVERY_SAVE;
|
|
$calendarWorkflow->defaultworkflow = 1;
|
|
$workflowManager->save($calendarWorkflow);
|
|
|
|
$task = $taskManager->createTask('VTEmailTask', $calendarWorkflow->id);
|
|
$task->active = true;
|
|
//SalesPlatform.ru begin
|
|
$task->summary = vtranslate('LBL_NOTIFICATION_EMAIL_TASK_SUMMARY','Install');
|
|
//$task->summary = 'Send Notification Email to Record Owner';
|
|
//SalesPlatform.ru end
|
|
$task->recepient = "\$(assigned_user_id : (Users) email1)";
|
|
//SalesPlatform.ru begin
|
|
$task->subject = vtranslate('LBL_NOTIFICATION_EMAIL_TASK_SUBJECT','Install');
|
|
$task->content = vtranslate('LBL_NOTIFICATION_EMAIL_TASK_CONTENT','Install');
|
|
//$task->subject = "Task : \$subject";
|
|
//$task->content = '$(assigned_user_id : (Users) first_name) $(assigned_user_id : (Users) last_name) ,<br/>'
|
|
// .'<b>Task Notification Details:</b><br/>'
|
|
// .'Subject : $subject<br/>'
|
|
// .'Start date and time : $date_start $time_start ( $(general : (__VtigerMeta__) dbtimezone) ) <br/>'
|
|
// .'End date and time : $due_date ( $(general : (__VtigerMeta__) dbtimezone) ) <br/>'
|
|
// .'Status : $taskstatus <br/>'
|
|
// .'Priority : $taskpriority <br/>'
|
|
// .'Related To : $(parent_id : (Leads) lastname) $(parent_id : (Leads) firstname) $(parent_id : (Accounts) accountname) '
|
|
// .'$(parent_id : (Potentials) potentialname) $(parent_id : (HelpDesk) ticket_title) <br/>'
|
|
// .'Contacts List : $(contact_id : (Contacts) lastname) $(contact_id : (Contacts) firstname) <br/>'
|
|
// .'Location : $location <br/>'
|
|
// .'Description : $description';
|
|
//SalesPlatform.ru end
|
|
$taskManager->saveTask($task);
|
|
}
|
|
|
|
/**
|
|
* Function adds default details view links
|
|
*/
|
|
public static function populateLinks() {
|
|
vimport('~~vtlib/Vtiger/Module.php');
|
|
|
|
// Links for Accounts module
|
|
$accountInstance = Vtiger_Module::getInstance('Accounts');
|
|
// Detail View Custom link
|
|
$accountInstance->addLink(
|
|
'DETAILVIEWBASIC', 'LBL_ADD_NOTE',
|
|
'index.php?module=Documents&action=EditView&return_module=$MODULE$&return_action=DetailView&return_id=$RECORD$&parent_id=$RECORD$',
|
|
'themes/images/bookMark.gif'
|
|
);
|
|
// SalesPlatform.ru begin: Add detail view action icons
|
|
$accountInstance->addLink('DETAILVIEWBASIC', 'LBL_SHOW_ACCOUNT_HIERARCHY', 'index.php?module=Accounts&action=AccountHierarchy&accountid=$RECORD$', 'themes/images/products.gif');
|
|
//$accountInstance->addLink('DETAILVIEWBASIC', 'LBL_SHOW_ACCOUNT_HIERARCHY', 'index.php?module=Accounts&action=AccountHierarchy&accountid=$RECORD$');
|
|
// SalesPlatform.ru end
|
|
|
|
$leadInstance = Vtiger_Module::getInstance('Leads');
|
|
$leadInstance->addLink(
|
|
'DETAILVIEWBASIC', 'LBL_ADD_NOTE',
|
|
'index.php?module=Documents&action=EditView&return_module=$MODULE$&return_action=DetailView&return_id=$RECORD$&parent_id=$RECORD$',
|
|
'themes/images/bookMark.gif'
|
|
);
|
|
|
|
$contactInstance = Vtiger_Module::getInstance('Contacts');
|
|
$contactInstance->addLink(
|
|
'DETAILVIEWBASIC', 'LBL_ADD_NOTE',
|
|
'index.php?module=Documents&action=EditView&return_module=$MODULE$&return_action=DetailView&return_id=$RECORD$&parent_id=$RECORD$',
|
|
'themes/images/bookMark.gif'
|
|
);
|
|
|
|
// SalesPlatform.ru begin: Add related records link to Documents
|
|
$documentInstance = Vtiger_Module::getInstance('Documents');
|
|
$documentInstance->addLink(
|
|
'DETAILVIEWWIDGET', 'LBL_RELATED_TO',
|
|
'module=Documents&action=DocumentsAjax&file=DetailViewAjax&recordid=$RECORD$&ajxaction=LOADRELATEDLISTWIDGET',
|
|
''
|
|
);
|
|
// SalesPlatform.ru end
|
|
|
|
// SalesPlatform.ru begin 5.4.0-201308
|
|
$vendorsInstance = Vtiger_Module::getInstance('Vendors');
|
|
$vendorsInstance->addLink('DETAILVIEWBASIC', 'LBL_ADD_NOTE', 'index.php?module=Documents&action=EditView&return_module=$MODULE$&return_action=DetailView&return_id=$RECORD$&parent_id=$RECORD$','themes/images/bookMark.gif');
|
|
$vendorsInstance->addLink('DETAILVIEWBASIC', 'LBL_VENDORS_ADD_EVENT', 'index.php?module=Calendar&view=Edit&mode=Events&sourceModule=Vendors&sourceRecord=$RECORD$&relationOperation=true&parent_id=$RECORD$','themes/images/AddEvent.gif');
|
|
$vendorsInstance->addLink('DETAILVIEWBASIC', 'LBL_VENDORS_ADD_TASK', 'index.php?module=Calendar&view=Edit&mode=Calendar&sourceModule=Vendors&sourceRecord=$RECORD$&relationOperation=true&parent_id=$RECORD$','themes/images/AddToDo.gif');
|
|
|
|
$helpdeskInstance = Vtiger_Module::getInstance('HelpDesk');
|
|
$helpdeskInstance->addLink('DETAILVIEWWIDGET', 'LBL_RELATED_TO', 'module=HelpDesk&action=HelpDeskAjax&file=DetailViewAjax&recordid=$RECORD$&ajxaction=LOADRELATEDLISTWIDGET');
|
|
// SalesPlatform.ru end
|
|
|
|
}
|
|
|
|
/**
|
|
* Function add help information on special fields
|
|
*/
|
|
public static function setFieldHelpInfo() {
|
|
// Added Help Info for Hours and Days fields of HelpDesk module.
|
|
vimport('~~vtlib/Vtiger/Module.php');
|
|
$helpDeskModule = Vtiger_Module::getInstance('HelpDesk');
|
|
$field1 = Vtiger_Field::getInstance('hours',$helpDeskModule);
|
|
$field2 = Vtiger_Field::getInstance('days',$helpDeskModule);
|
|
|
|
// SalesPlatform.ru begin
|
|
$field1->setHelpInfo(vtranslate('LBL_HELP_INFO1'));
|
|
$field2->setHelpInfo(vtranslate('LBL_HELP_INFO2'));
|
|
//$field1->setHelpInfo('This gives the estimated hours for the Ticket.'.
|
|
// '<br>When the same ticket is added to a Service Contract,'.
|
|
// 'based on the Tracking Unit of the Service Contract,'.
|
|
// 'Used units is updated whenever a ticket is Closed.');
|
|
|
|
//$field2->setHelpInfo('This gives the estimated days for the Ticket.'.
|
|
// '<br>When the same ticket is added to a Service Contract,'.
|
|
// 'based on the Tracking Unit of the Service Contract,'.
|
|
// 'Used units is updated whenever a ticket is Closed.');
|
|
// SalesPlatform.ru end
|
|
|
|
$usersModuleInstance = Vtiger_Module::getInstance('Users');
|
|
$field1 = Vtiger_Field::getInstance('currency_grouping_pattern', $usersModuleInstance);
|
|
$field2 = Vtiger_Field::getInstance('currency_decimal_separator', $usersModuleInstance);
|
|
$field3 = Vtiger_Field::getInstance('currency_grouping_separator', $usersModuleInstance);
|
|
$field4 = Vtiger_Field::getInstance('currency_symbol_placement', $usersModuleInstance);
|
|
|
|
$field1->setHelpInfo("<b>Currency - Digit Grouping Pattern</b> <br/><br/>".
|
|
"This pattern specifies the format in which the currency separator will be placed.");
|
|
$field2->setHelpInfo("<b>Currency - Decimal Separator</b> <br/><br/>".
|
|
"Decimal separator specifies the separator to be used to separate ".
|
|
"the fractional values from the whole number part. <br/>".
|
|
"<b>Eg:</b> <br/>".
|
|
". => 123.45 <br/>".
|
|
", => 123,45 <br/>".
|
|
"' => 123'45 <br/>".
|
|
" => 123 45 <br/>".
|
|
"$ => 123$45 <br/>");
|
|
$field3->setHelpInfo("<b>Currency - Grouping Separator</b> <br/><br/>".
|
|
"Grouping separator specifies the separator to be used to group ".
|
|
"the whole number part into hundreds, thousands etc. <br/>".
|
|
"<b>Eg:</b> <br/>".
|
|
". => 123.456.789 <br/>".
|
|
", => 123,456,789 <br/>".
|
|
"' => 123'456'789 <br/>".
|
|
" => 123 456 789 <br/>".
|
|
"$ => 123$456$789 <br/>");
|
|
$field4->setHelpInfo("<b>Currency - Symbol Placement</b> <br/><br/>".
|
|
"Symbol Placement allows you to configure the position of the ".
|
|
"currency symbol with respect to the currency value.<br/>".
|
|
"<b>Eg:</b> <br/>".
|
|
"$1.0 => $123,456,789.50 <br/>".
|
|
"1.0$ => 123,456,789.50$ <br/>");
|
|
}
|
|
}
|