Avoid CiviCRM running full drupal cache flush, as this results in CiviCRM clobbering...
[civicrm-core.git] / CRM / Profile / Form / Dynamic.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components for custom data
38 *
39 * It delegates the work to lower level subclasses and integrates the changes
40 * back in. It also uses a lot of functionality with the CRM API's, so any change
41 * made here could potentially affect the API etc. Be careful, be aware, use unit tests.
42 *
43 */
44class CRM_Profile_Form_Dynamic extends CRM_Profile_Form {
45
46 /**
100fef9d 47 * Pre processing work done here.
6a488035
TO
48 *
49 * @param
50 *
51 * @return void
6a488035 52 */
00be9182 53 public function preProcess() {
6a488035
TO
54 if ($this->get('register')) {
55 $this->_mode = CRM_Profile_Form::MODE_REGISTER;
56 }
57 else {
58 $this->_mode = CRM_Profile_Form::MODE_EDIT;
59 }
60
61 if ($this->get('skipPermission')) {
62 $this->_skipPermission = TRUE;
63 }
64
65 // also allow dupes to be updated for edit in my account (CRM-2232)
66 $this->_isUpdateDupe = TRUE;
67
68 parent::preProcess();
69 }
70
71 /**
fe482240 72 * Build the form object.
6a488035
TO
73 *
74 * @return void
6a488035
TO
75 */
76 public function buildQuickForm() {
77 $this->addButtons(array(
78 array(
79 'type' => 'upload',
80 'name' => ts('Save'),
81 'isDefault' => TRUE,
82 ),
83 )
84 );
85
86 // also add a hidden element for to trick drupal
87 $this->addElement('hidden', "edit[civicrm_dummy_field]", "CiviCRM Dummy Field for Drupal");
88 parent::buildQuickForm();
89
90 $this->addFormRule(array('CRM_Profile_Form_Dynamic', 'formRule'), $this);
91 }
92
93 /**
fe482240 94 * Global form rule.
6a488035 95 *
68c9fb83
TO
96 * @param array $fields
97 * The input form values.
98 * @param array $files
99 * The uploaded files if any.
c490a46a 100 * @param CRM_Core_Form $form
77b97be7 101 *
6a488035 102 *
72b3a70c
CW
103 * @return bool|array
104 * true if no errors, else array of errors
6a488035 105 */
00be9182 106 public static function formRule($fields, $files, $form) {
6a488035
TO
107 $errors = array();
108
109 // if no values, return
8cc574cf 110 if (empty($fields) || empty($fields['edit'])) {
6a488035
TO
111 return TRUE;
112 }
113
114 return CRM_Profile_Form::formRule($fields, $files, $form);
115 }
116
117 /**
118 * Process the user submitted custom data values.
119 *
6a488035
TO
120 *
121 * @return void
122 */
123 public function postProcess() {
124 parent::postProcess();
125 }
96025800 126
6a488035 127}