Merge pull request #17831 from totten/master-no-preboot
[civicrm-core.git] / settings / Map.setting.php
index 6d2b0464f28d10de73a5217257bb1eb3a5150b2b..dd474c53cdb2913d3042ddc82bb29eaa6e25b676 100644 (file)
@@ -1,40 +1,24 @@
 <?php
 /*
  +--------------------------------------------------------------------+
- | CiviCRM version 5                                                  |
- +--------------------------------------------------------------------+
- | Copyright CiviCRM LLC (c) 2004-2019                                |
- +--------------------------------------------------------------------+
- | This file is a part of CiviCRM.                                    |
- |                                                                    |
- | CiviCRM is free software; you can copy, modify, and distribute it  |
- | under the terms of the GNU Affero General Public License           |
- | Version 3, 19 November 2007 and the CiviCRM Licensing Exception.   |
- |                                                                    |
- | CiviCRM is distributed in the hope that it will be useful, but     |
- | WITHOUT ANY WARRANTY; without even the implied warranty of         |
- | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.               |
- | See the GNU Affero General Public License for more details.        |
+ | Copyright CiviCRM LLC. All rights reserved.                        |
  |                                                                    |
- | You should have received a copy of the GNU Affero General Public   |
- | License and the CiviCRM Licensing Exception along                  |
- | with this program; if not, contact CiviCRM LLC                     |
- | at info[AT]civicrm[DOT]org. If you have questions about the        |
- | GNU Affero General Public License or the licensing of CiviCRM,     |
- | see the CiviCRM license FAQ at http://civicrm.org/licensing        |
+ | This work is published under the GNU AGPLv3 license with some      |
+ | permitted exceptions and without any warranty. For full license    |
+ | and copyright information, see https://civicrm.org/licensing       |
  +--------------------------------------------------------------------+
  */
 
 /**
  *
  * @package CRM
- * @copyright CiviCRM LLC (c) 2004-2019
+ * @copyright CiviCRM LLC https://civicrm.org/licensing
  * $Id$
  *
  * Settings metadata file
  */
-return array(
-  'geoAPIKey' => array(
+return [
+  'geoAPIKey' => [
     'add' => '4.7',
     'help_text' => NULL,
     'is_domain' => 1,
@@ -45,15 +29,15 @@ return array(
     'type' => 'String',
     'quick_form_type' => 'Element',
     'html_type' => 'text',
-    'html_attributes' => array(
+    'html_attributes' => [
       'size' => '32',
       'maxlength' => '64',
-    ),
+    ],
     'default' => NULL,
-    'title' => 'Geo Provider Key',
-    'description' => 'Enter the API key or Application ID associated with your geocoding provider (not required for Yahoo).',
-  ),
-  'geoProvider' => array(
+    'title' => ts('Geo Provider Key'),
+    'description' => ts('Enter the API key or Application ID associated with your geocoding provider.'),
+  ],
+  'geoProvider' => [
     'add' => '4.7',
     'help_text' => NULL,
     'is_domain' => 1,
@@ -64,17 +48,17 @@ return array(
     'type' => 'String',
     'quick_form_type' => 'Select',
     'html_type' => 'Select',
-    'html_attributes' => array(
+    'html_attributes' => [
       'class' => 'crm-select2',
-    ),
-    'pseudoconstant' => array(
+    ],
+    'pseudoconstant' => [
       'callback' => 'CRM_Core_SelectValues::geoProvider',
-    ),
+    ],
     'default' => NULL,
-    'title' => 'Geocoding Provider',
-    'description' => 'This can be the same or different from the mapping provider selected.',
-  ),
-  'mapAPIKey' => array(
+    'title' => ts('Geocoding Provider'),
+    'description' => ts('This can be the same or different from the mapping provider selected.'),
+  ],
+  'mapAPIKey' => [
     'add' => '4.7',
     'help_text' => NULL,
     'is_domain' => 1,
@@ -85,15 +69,15 @@ return array(
     'type' => 'String',
     'quick_form_type' => 'Element',
     'html_type' => 'text',
-    'html_attributes' => array(
+    'html_attributes' => [
       'size' => '32',
       'maxlength' => '64',
-    ),
+    ],
     'default' => NULL,
-    'title' => 'Map Provider Key',
-    'description' => 'Enter your API Key or Application ID. An API Key is required for the Google Maps API. Refer to developers.google.com for the latest information.',
-  ),
-  'mapProvider' => array(
+    'title' => ts('Map Provider Key'),
+    'description' => ts('Enter your API Key or Application ID. An API Key is required for the Google Maps API. Refer to developers.google.com for the latest information.'),
+  ],
+  'mapProvider' => [
     'add' => '4.7',
     'help_text' => NULL,
     'is_domain' => 1,
@@ -104,14 +88,14 @@ return array(
     'type' => 'String',
     'quick_form_type' => 'Select',
     'html_type' => 'Select',
-    'html_attributes' => array(
+    'html_attributes' => [
       'class' => 'crm-select2',
-    ),
-    'pseudoconstant' => array(
+    ],
+    'pseudoconstant' => [
       'callback' => 'CRM_Core_SelectValues::mapProvider',
-    ),
+    ],
     'default' => NULL,
-    'title' => 'Mapping Provider',
-    'description' => 'Choose the mapping provider that has the best coverage for the majority of your contact addresses.',
-  ),
-);
+    'title' => ts('Mapping Provider'),
+    'description' => ts('Choose the mapping provider that has the best coverage for the majority of your contact addresses.'),
+  ],
+];