Fix nonstandard header comments
[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 */
17/*
18 * Settings metadata file
19 */
dfe1f88a
CW
20return [
21 'ext_repo_url' => [
7595b57f
TO
22 'group_name' => 'Extension Preferences',
23 'group' => 'ext',
24 'name' => 'ext_repo_url',
25 'type' => 'String',
26 'quick_form_type' => 'Element',
dfe1f88a 27 'html_attributes' => [
7595b57f
TO
28 'size' => 64,
29 'maxlength' => 128,
dfe1f88a 30 ],
c1a2145a 31 'html_type' => 'text',
7595b57f
TO
32 'default' => 'https://civicrm.org/extdir/ver={ver}|cms={uf}',
33 'add' => '4.3',
8d2e8579 34 'title' => ts('Extension Repo URL'),
7595b57f
TO
35 'is_domain' => 1,
36 'is_contact' => 0,
7595b57f 37 'help_text' => '',
dfe1f88a
CW
38 ],
39];