Merge pull request #16189 from eileenmcnaughton/acl
[civicrm-core.git] / settings / Extension.setting.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | Copyright CiviCRM LLC. All rights reserved. |
5 | |
6 | This work is published under the GNU AGPLv3 license with some |
7 | permitted exceptions and without any warranty. For full license |
8 | and copyright information, see https://civicrm.org/licensing |
9 +--------------------------------------------------------------------+
10 */
11
12 /**
13 *
14 * @package CRM
15 * @copyright CiviCRM LLC https://civicrm.org/licensing
16 * $Id$
17 *
18 */
19 /*
20 * Settings metadata file
21 */
22 return [
23 'ext_repo_url' => [
24 'group_name' => 'Extension Preferences',
25 'group' => 'ext',
26 'name' => 'ext_repo_url',
27 'type' => 'String',
28 'quick_form_type' => 'Element',
29 'html_attributes' => [
30 'size' => 64,
31 'maxlength' => 128,
32 ],
33 'html_type' => 'text',
34 'default' => 'https://civicrm.org/extdir/ver={ver}|cms={uf}',
35 'add' => '4.3',
36 'title' => ts('Extension Repo URL'),
37 'is_domain' => 1,
38 'is_contact' => 0,
39 'help_text' => '',
40 ],
41 ];