| Server IP : 138.197.176.125 / Your IP : 216.73.217.54 Web Server : Apache/2.4.41 (Ubuntu) System : Linux SuiteCRM-8 5.4.0-216-generic #236-Ubuntu SMP Fri Apr 11 19:53:21 UTC 2025 x86_64 User : root ( 0) PHP Version : 8.3.19 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : ON Directory : /var/www/crest/modules/Contacts/models/ |
Upload File : |
<?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.
*************************************************************************************/
class Contacts_Record_Model extends Vtiger_Record_Model {
/**
* Function returns the url for create event
* @return <String>
*/
function getCreateEventUrl() {
$calendarModuleModel = Vtiger_Module_Model::getInstance('Calendar');
return $calendarModuleModel->getCreateEventRecordUrl().'&contact_id='.$this->getId();
}
/**
* Function returns the url for create todo
* @return <String>
*/
function getCreateTaskUrl() {
$calendarModuleModel = Vtiger_Module_Model::getInstance('Calendar');
return $calendarModuleModel->getCreateTaskRecordUrl().'&contact_id='.$this->getId();
}
/**
* Function to get List of Fields which are related from Contacts to Inventory Record
* @return <array>
*/
public function getInventoryMappingFields() {
return array(
array('parentField'=>'account_id', 'inventoryField'=>'account_id', 'defaultValue'=>''),
//Billing Address Fields
array('parentField'=>'mailingcity', 'inventoryField'=>'bill_city', 'defaultValue'=>''),
array('parentField'=>'mailingstreet', 'inventoryField'=>'bill_street', 'defaultValue'=>''),
array('parentField'=>'mailingstate', 'inventoryField'=>'bill_state', 'defaultValue'=>''),
array('parentField'=>'mailingzip', 'inventoryField'=>'bill_code', 'defaultValue'=>''),
array('parentField'=>'mailingcountry', 'inventoryField'=>'bill_country', 'defaultValue'=>''),
array('parentField'=>'mailingpobox', 'inventoryField'=>'bill_pobox', 'defaultValue'=>''),
//Shipping Address Fields
array('parentField'=>'otherstreet', 'inventoryField'=>'ship_street', 'defaultValue'=>''),
array('parentField'=>'othercity', 'inventoryField'=>'ship_city', 'defaultValue'=>''),
array('parentField'=>'otherstate', 'inventoryField'=>'ship_state', 'defaultValue'=>''),
array('parentField'=>'otherzip', 'inventoryField'=>'ship_code', 'defaultValue'=>''),
array('parentField'=>'othercountry', 'inventoryField'=>'ship_country', 'defaultValue'=>''),
array('parentField'=>'otherpobox', 'inventoryField'=>'ship_pobox', 'defaultValue'=>'')
);
}
}