Merge pull request #3745 from colemanw/relMemberApi
[civicrm-core.git] / CRM / Contact / Form / Edit / Demographics.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * form helper class for an Demographics object
38 */
39 class CRM_Contact_Form_Edit_Demographics {
40
41 /**
42 * build the form elements for Demographics object
43 *
44 * @param CRM_Core_Form $form reference to the form object
45 *
46 * @return void
47 * @access public
48 * @static
49 */
50 static function buildQuickForm(&$form) {
51 // radio button for gender
52 $genderOptions = array();
53 $gender = CRM_Core_PseudoConstant::get('CRM_Contact_DAO_Contact', 'gender_id', array('localize' => TRUE));
54 foreach ($gender as $key => $var) {
55 $genderOptions[$key] = $form->createElement('radio', NULL,
56 ts('Gender'), $var, $key,
57 array('id' => "civicrm_gender_{$var}_{$key}")
58 );
59 }
60 $form->addGroup($genderOptions, 'gender_id', ts('Gender'))->setAttribute('allowClear', TRUE);
61
62 $form->addDate('birth_date', ts('Date of Birth'), FALSE, array('formatType' => 'birth'));
63
64 $form->addElement('checkbox', 'is_deceased', NULL, ts('Contact is deceased'), array('onclick' => "showDeceasedDate()"));
65 $form->addDate('deceased_date', ts('Deceased date'), FALSE, array('formatType' => 'birth'));
66 }
67
68 /**
69 * This function sets the default values for the form. Note that in edit/view mode
70 * the default values are retrieved from the database
71 *
72 * @access public
73 *
74 * @param $form
75 * @param $defaults
76 *
77 * @return void
78 */
79 static function setDefaultValues(&$form, &$defaults) {}
80 }
81