]> CyberLeo.Net >> Repos - Github/sugarcrm.git/blob - modules/OptimisticLock/LockResolve.php
Release 6.5.0
[Github/sugarcrm.git] / modules / OptimisticLock / LockResolve.php
1 <?php
2 if(!defined('sugarEntry') || !sugarEntry) die('Not A Valid Entry Point');
3 /*********************************************************************************
4  * SugarCRM Community Edition is a customer relationship management program developed by
5  * SugarCRM, Inc. Copyright (C) 2004-2012 SugarCRM Inc.
6  * 
7  * This program is free software; you can redistribute it and/or modify it under
8  * the terms of the GNU Affero General Public License version 3 as published by the
9  * Free Software Foundation with the addition of the following permission added
10  * to Section 15 as permitted in Section 7(a): FOR ANY PART OF THE COVERED WORK
11  * IN WHICH THE COPYRIGHT IS OWNED BY SUGARCRM, SUGARCRM DISCLAIMS THE WARRANTY
12  * OF NON INFRINGEMENT OF THIRD PARTY RIGHTS.
13  * 
14  * This program is distributed in the hope that it will be useful, but WITHOUT
15  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
16  * FOR A PARTICULAR PURPOSE.  See the GNU Affero General Public License for more
17  * details.
18  * 
19  * You should have received a copy of the GNU Affero General Public License along with
20  * this program; if not, see http://www.gnu.org/licenses or write to the Free
21  * Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
22  * 02110-1301 USA.
23  * 
24  * You can contact SugarCRM, Inc. headquarters at 10050 North Wolfe Road,
25  * SW2-130, Cupertino, CA 95014, USA. or at email address contact@sugarcrm.com.
26  * 
27  * The interactive user interfaces in modified source and object code versions
28  * of this program must display Appropriate Legal Notices, as required under
29  * Section 5 of the GNU Affero General Public License version 3.
30  * 
31  * In accordance with Section 7(b) of the GNU Affero General Public License version 3,
32  * these Appropriate Legal Notices must retain the display of the "Powered by
33  * SugarCRM" logo. If the display of the logo is not reasonably feasible for
34  * technical reasons, the Appropriate Legal Notices must display the words
35  * "Powered by SugarCRM".
36  ********************************************************************************/
37
38 function display_conflict_between_objects($object_1, $object_2, $field_defs,$module_dir, $display_name){
39         $mod_strings = return_module_language($GLOBALS['current_language'],'OptimisticLock');
40         $title = '<tr><td >&nbsp;</td>';
41         $object1_row= '<tr class="oddListRowS1"><td><b>'. $mod_strings['LBL_YOURS'] . '</b></td>';
42         $object2_row= '<tr class="evenListRowS1"><td><b>' . $mod_strings['LBL_IN_DATABASE'] . '</b></td>';
43         $exists = false;
44
45         foreach( $field_defs as  $name=>$ignore)
46         {
47         $value = $object_1[$name];
48         // FIXME: Replace the comparison here with a function from SugarWidgets
49         if ( !is_scalar($value) || $name == 'team_name' ) {
50             continue;
51         }
52                 if( $value != $object_2->$name && !($object_2->$name instanceOf Link)){
53                         $title .= '<td ><b>&nbsp;' . translate($field_defs[$name]['vname'], $module_dir). '</b></td>';
54                         $object1_row .= '<td>&nbsp;' . $value. '</td>';
55                         $object2_row .= '<td>&nbsp;' . $object_2->$name . '</td>';
56                         $exists = true;
57                 }
58         }
59
60         if($exists){
61                 echo "<b>{$mod_strings['LBL_CONFLICT_EXISTS']}<a href='index.php?action=DetailView&module=$module_dir&record={$object_1['id']}'  target='_blank'>$display_name</a> </b> <br><table  class='list view' border='0' cellspacing='0' cellpadding='2'>$title<td  >&nbsp;</td></tr>$object1_row<td><a href='index.php?&module=OptimisticLock&action=LockResolve&save=true'>{$mod_strings['LBL_ACCEPT_YOURS']}</a></td></tr>$object2_row<td><a href='index.php?&module=$object_2->module_dir&action=DetailView&record=$object_2->id'>{$mod_strings['LBL_ACCEPT_DATABASE']}</a></td></tr></table><br>";
62         }else{
63                 echo "<b>{$mod_strings['LBL_RECORDS_MATCH']}</b><br>";
64         }
65 }
66
67 if(isset($_SESSION['o_lock_object'])){
68         global $beanFiles, $moduleList;
69         $object =       $_SESSION['o_lock_object'];
70         require_once($beanFiles[$beanList[$_SESSION['o_lock_module']]]);
71         $current_state = new $_SESSION['o_lock_class']();
72         $current_state->retrieve($object['id']);
73
74         if(isset($_REQUEST['save'])){
75                 $_SESSION['o_lock_fs'] = true;
76                 echo  $_SESSION['o_lock_save'];
77                 die();
78         }else{
79                 display_conflict_between_objects($object, $current_state, $current_state->field_defs, $current_state->module_dir, $_SESSION['o_lock_class']);
80 }}else{
81         echo $mod_strings['LBL_NO_LOCKED_OBJECTS'];
82 }
83
84 ?>