3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.7 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2015
35 * This class generates form components for Address Section.
37 class CRM_Admin_Form_Preferences_Address
extends CRM_Admin_Form_Preferences
{
38 public function preProcess() {
40 CRM_Utils_System
::setTitle(ts('Settings - Addresses'));
42 // Address Standardization
43 $addrProviders = array(
45 ) + CRM_Core_SelectValues
::addressProvider();
47 $this->_varNames
= array(
48 CRM_Core_BAO_Setting
::SYSTEM_PREFERENCES_NAME
=> array(
49 'address_options' => array(
50 'html_type' => 'checkboxes',
51 'title' => ts('Address Fields'),
54 'address_format' => array(
55 'html_type' => 'textarea',
56 'title' => ts('Display Format'),
57 'description' => NULL,
60 'mailing_format' => array(
61 'html_type' => 'textarea',
62 'title' => ts('Mailing Label Format'),
63 'description' => NULL,
67 CRM_Core_BAO_Setting
::ADDRESS_STANDARDIZATION_PREFERENCES_NAME
=> array(
68 'address_standardization_provider' => array(
69 'html_type' => 'select',
70 'title' => ts('Provider'),
71 'option_values' => $addrProviders,
74 'address_standardization_userid' => array(
75 'html_type' => 'text',
76 'title' => ts('User ID'),
77 'description' => NULL,
80 'address_standardization_url' => array(
81 'html_type' => 'text',
82 'title' => ts('Web Service URL'),
83 'description' => NULL,
95 public function setDefaultValues() {
97 $defaults['address_standardization_provider'] = $this->_config
->address_standardization_provider
;
98 $defaults['address_standardization_userid'] = $this->_config
->address_standardization_userid
;
99 $defaults['address_standardization_url'] = $this->_config
->address_standardization_url
;
101 $this->addressSequence
= isset($newSequence) ?
$newSequence : "";
103 if (empty($this->_config
->address_format
)) {
104 $defaults['address_format'] = "
105 {contact.street_address}
106 {contact.supplemental_address_1}
107 {contact.supplemental_address_2}
108 {contact.city}{, }{contact.state_province}{ }{contact.postal_code}
113 $defaults['address_format'] = $this->_config
->address_format
;
116 if (empty($this->_config
->mailing_format
)) {
117 $defaults['mailing_format'] = "
119 {contact.street_address}
120 {contact.supplemental_address_1}
121 {contact.supplemental_address_2}
122 {contact.city}{, }{contact.state_province}{ }{contact.postal_code}
127 $defaults['mailing_format'] = $this->_config
->mailing_format
;
130 parent
::cbsDefaultValues($defaults);
136 * Build the form object.
138 public function buildQuickForm() {
139 $this->applyFilter('__ALL__', 'trim');
141 $this->addFormRule(array('CRM_Admin_Form_Preferences_Address', 'formRule'));
143 //get the tokens for Mailing Label field
144 $tokens = CRM_Core_SelectValues
::contactTokens();
145 $this->assign('tokens', CRM_Utils_Token
::formatTokensForDisplay($tokens));
147 parent
::buildQuickForm();
155 public static function formRule($fields) {
156 $p = $fields['address_standardization_provider'];
157 $u = $fields['address_standardization_userid'];
158 $w = $fields['address_standardization_url'];
160 // make sure that there is a value for all of them
161 // if any of them are set
162 if ($p ||
$u ||
$w) {
163 if (!CRM_Utils_System
::checkPHPVersion(5, FALSE)) {
164 $errors['_qf_default'] = ts('Address Standardization features require PHP version 5 or greater.');
168 if (!($p && $u && $w)) {
169 $errors['_qf_default'] = ts('You must provide values for all three Address Standarization fields.');
178 * Process the form submission.
180 public function postProcess() {
181 if ($this->_action
== CRM_Core_Action
::VIEW
) {
185 $this->_params
= $this->controller
->exportValues($this->_name
);
187 // check if county option has been set
188 $options = CRM_Core_OptionGroup
::values('address_options', FALSE, FALSE, TRUE);
189 foreach ($options as $key => $title) {
190 if ($title == ts('County')) {
191 // check if the $key is present in $this->_params
192 if (isset($this->_params
['address_options']) &&
193 !empty($this->_params
['address_options'][$key])
195 // print a status message to the user if county table seems small
196 $countyCount = CRM_Core_DAO
::singleValueQuery("SELECT count(*) FROM civicrm_county");
197 if ($countyCount < 10) {
198 CRM_Core_Session
::setStatus(ts('You have enabled the County option. Please ensure you populate the county table in your CiviCRM Database. You can find extensions to populate counties in the <a %1>CiviCRM Extensions Directory</a>.', array(1 => 'href="' . CRM_Utils_System
::url('civicrm/admin/extensions', array('reset' => 1), TRUE, 'extensions-addnew') . '"')),
199 ts('Populate counties'),
207 $this->postProcessCommon();