Merge pull request #12176 from vinuvarshith/dev-core-133-reply-to-check
[civicrm-core.git] / CRM / Contact / Form / Edit / Lock.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
8c9251b3 6 | Copyright CiviCRM LLC (c) 2004-2018 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
8c9251b3 31 * @copyright CiviCRM LLC (c) 2004-2018
6a488035
TO
32 */
33
34/**
5a409b50 35 * Auxiliary class to provide support for locking (and ignoring locks on) contact records.
6a488035
TO
36 */
37class CRM_Contact_Form_Edit_Lock {
38
39 /**
fe482240 40 * Build the form object.
6a488035 41 *
77c5b619
TO
42 * @param CRM_Core_Form $form
43 * Form object.
6a488035
TO
44 */
45 public static function buildQuickForm(&$form) {
b4b53245 46 $form->addField('modified_date', array('type' => 'hidden', 'id' => 'modified_date', 'label' => ''));
6a488035
TO
47 }
48
49 /**
5a409b50 50 * Ensure that modified_date has not changed in the underlying DB.
6a488035 51 *
77c5b619
TO
52 * @param array $fields
53 * The input form values.
54 * @param array $files
55 * The uploaded files if any.
100fef9d 56 * @param int $contactID
6c8f6e67 57 *
72b3a70c
CW
58 * @return bool|array
59 * true if no errors, else array of errors
6a488035 60 */
00be9182 61 public static function formRule($fields, $files, $contactID = NULL) {
6a488035
TO
62 $errors = array();
63
64 $timestamps = CRM_Contact_BAO_Contact::getTimestamps($contactID);
65 if ($fields['modified_date'] != $timestamps['modified_date']) {
66 // Inline buttons generated via JS
67 $open = sprintf("<span id='update_modified_date' data:latest_modified_date='%s'>", $timestamps['modified_date']);
68 $close = "</span>";
69 $errors['modified_date'] = $open . ts('This record was modified by another user!') . $close;
70 }
71
72 return empty($errors) ? TRUE : $errors;
73 }
96025800 74
6a488035 75}