CRM-16373 - Localization - Save through settings instead of domain
[civicrm-core.git] / CRM / Admin / Form / Setting / Mapping.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
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 */
33
34/**
ce064e4f 35 * This class generates form components for Mapping and Geocoding.
6a488035
TO
36 */
37class CRM_Admin_Form_Setting_Mapping extends CRM_Admin_Form_Setting {
38
39 /**
eceb18cc 40 * Build the form object.
6a488035
TO
41 */
42 public function buildQuickForm() {
43 CRM_Utils_System::setTitle(ts('Settings - Mapping and Geocoding Providers'));
44
45 $map = CRM_Core_SelectValues::mapProvider();
46 $geo = CRM_Core_SelectValues::geoProvider();
ae8f569f 47 $this->addElement('select', 'mapProvider', ts('Mapping Provider'), array('' => '- select -') + $map, array('class' => 'crm-select2'));
6a488035 48 $this->add('text', 'mapAPIKey', ts('Map Provider Key'), NULL);
ae8f569f 49 $this->addElement('select', 'geoProvider', ts('Geocoding Provider'), array('' => '- select -') + $geo, array('class' => 'crm-select2'));
6a488035
TO
50 $this->add('text', 'geoAPIKey', ts('Geo Provider Key'), NULL);
51
52 parent::buildQuickForm();
53 }
54
55 /**
eceb18cc 56 * Global form rule.
6a488035 57 *
5173bd95
TO
58 * @param array $fields
59 * The input form values.
6a488035 60 *
72b3a70c
CW
61 * @return bool|array
62 * true if no errors, else array of errors
6a488035 63 */
00be9182 64 public static function formRule($fields) {
6a488035
TO
65 $errors = array();
66
67 if (!CRM_Utils_System::checkPHPVersion(5, FALSE)) {
68 $errors['_qf_default'] = ts('Mapping features require PHP version 5 or greater');
69 }
70
71 if (!$fields['mapAPIKey'] && ($fields['mapProvider'] != '' && $fields['mapProvider'] == 'Yahoo')) {
72 $errors['mapAPIKey'] = "Map Provider key is a required field.";
73 }
74
75 if ($fields['mapProvider'] == 'OpenStreetMaps' && $fields['geoProvider'] == '') {
76 $errors['geoProvider'] = "Please select a Geocoding Provider - Open Street Maps does not provide geocoding.";
77 }
78
79 return $errors;
80 }
81
82 /**
ce064e4f 83 * Add the rules (mainly global rules) for form.
6a488035 84 *
ce064e4f 85 * All local rules are added near the element
6a488035 86 */
00be9182 87 public function addRules() {
6a488035
TO
88 $this->addFormRule(array('CRM_Admin_Form_Setting_Mapping', 'formRule'));
89 }
96025800 90
6a488035 91}