Merge pull request #16231 from mfb/imap-batch-size
[civicrm-core.git] / settings / Extension.setting.php
CommitLineData
7595b57f
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
6b7eb9df 4 | Copyright CiviCRM LLC. All rights reserved. |
7595b57f 5 | |
6b7eb9df
TO
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 |
7595b57f
TO
9 +--------------------------------------------------------------------+
10 */
11
12/**
13 *
14 * @package CRM
ca5cec67 15 * @copyright CiviCRM LLC https://civicrm.org/licensing
7595b57f
TO
16 * $Id$
17 *
18 */
19/*
20 * Settings metadata file
21 */
dfe1f88a
CW
22return [
23 'ext_repo_url' => [
7595b57f
TO
24 'group_name' => 'Extension Preferences',
25 'group' => 'ext',
26 'name' => 'ext_repo_url',
27 'type' => 'String',
28 'quick_form_type' => 'Element',
dfe1f88a 29 'html_attributes' => [
7595b57f
TO
30 'size' => 64,
31 'maxlength' => 128,
dfe1f88a 32 ],
c1a2145a 33 'html_type' => 'text',
7595b57f
TO
34 'default' => 'https://civicrm.org/extdir/ver={ver}|cms={uf}',
35 'add' => '4.3',
8d2e8579 36 'title' => ts('Extension Repo URL'),
7595b57f
TO
37 'is_domain' => 1,
38 'is_contact' => 0,
7595b57f 39 'help_text' => '',
dfe1f88a
CW
40 ],
41];