[Vtigercrm-commits] [vtiger-commits] r9733 - in /vtigercrm/branches/5.0.2/modules/Import: ImportAccount.php ImportContact.php ImportLead.php ImportOpportunity.php ImportProduct.php
vtigercrm-commits at vtiger.fosslabs.com
vtigercrm-commits at vtiger.fosslabs.com
Thu Oct 26 13:54:17 EDT 2006
Author: richie
Date: Thu Oct 26 11:54:11 2006
New Revision: 9733
Log:
Class name changed
Modified:
vtigercrm/branches/5.0.2/modules/Import/ImportAccount.php
vtigercrm/branches/5.0.2/modules/Import/ImportContact.php
vtigercrm/branches/5.0.2/modules/Import/ImportLead.php
vtigercrm/branches/5.0.2/modules/Import/ImportOpportunity.php
vtigercrm/branches/5.0.2/modules/Import/ImportProduct.php
Modified: vtigercrm/branches/5.0.2/modules/Import/ImportAccount.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Import/ImportAccount.php (original)
+++ vtigercrm/branches/5.0.2/modules/Import/ImportAccount.php Thu Oct 26 11:54:11 2006
@@ -30,7 +30,7 @@
require_once('include/ComboUtil.php');
// Account is used to store vtiger_account information.
-class ImportAccount extends Account {
+class ImportAccount extends Accounts {
var $db;
// Get _dom arrays from Database
Modified: vtigercrm/branches/5.0.2/modules/Import/ImportContact.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Import/ImportContact.php (original)
+++ vtigercrm/branches/5.0.2/modules/Import/ImportContact.php Thu Oct 26 11:54:11 2006
@@ -28,7 +28,7 @@
$comboFieldArray = getComboArray($comboFieldNames);
// Contact is used to store customer information.
-class ImportContact extends Contact {
+class ImportContact extends Contacts {
// these are vtiger_fields that may be set on import
// but are to be processed and incorporated
// into vtiger_fields of the parent class
Modified: vtigercrm/branches/5.0.2/modules/Import/ImportLead.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Import/ImportLead.php (original)
+++ vtigercrm/branches/5.0.2/modules/Import/ImportLead.php Thu Oct 26 11:54:11 2006
@@ -35,7 +35,7 @@
require_once('modules/Leads/Leads.php');
-class ImportLead extends Lead {
+class ImportLead extends Leads {
var $db;
// This is the list of the functions to run when importing
Modified: vtigercrm/branches/5.0.2/modules/Import/ImportOpportunity.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Import/ImportOpportunity.php (original)
+++ vtigercrm/branches/5.0.2/modules/Import/ImportOpportunity.php Thu Oct 26 11:54:11 2006
@@ -36,7 +36,7 @@
$comboFieldArray = getComboArray($comboFieldNames);
// Account is used to store vtiger_account information.
-class ImportOpportunity extends Potential {
+class ImportOpportunity extends Potentials {
var $db;
// This is the list of vtiger_fields that are required.
Modified: vtigercrm/branches/5.0.2/modules/Import/ImportProduct.php
==============================================================================
--- vtigercrm/branches/5.0.2/modules/Import/ImportProduct.php (original)
+++ vtigercrm/branches/5.0.2/modules/Import/ImportProduct.php Thu Oct 26 11:54:11 2006
@@ -36,7 +36,7 @@
require_once('modules/Leads/Leads.php');
-class ImportProduct extends Product {
+class ImportProduct extends Products {
var $db;
// This is the list of the functions to run when importing
More information about the vtigercrm-commits
mailing list