INFRA-132 - CRM/Dedupe - phpcbf
[civicrm-core.git] / settings / Directory.setting.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
f5721b07 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
f5721b07 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35/*
36 * Settings metadata file
37 */
38
39return array(
40 'uploadDir' => array(
41 'group_name' => 'Directory Preferences',
42 'group' => 'directory',
43 'name' => 'uploadDir',
44 'type' => 'Url',
45 'html_type' => 'Text',
46 'default' => null,
47 'add' => '4.1',
48 'prefetch' => 1,
66f90900 49 'title' => 'Upload Directory',
6a488035
TO
50 'is_domain' => 1,
51 'is_contact' => 0,
52 'description' => null,
66f90900 53 'help_text' => '',
6a488035
TO
54 ),
55 'imageUploadDir' => array(
56 'group_name' => 'Directory Preferences',
57 'group' => 'directory',
58 'name' => 'imageUploadDir',
59 'type' => 'Url',
60 'html_type' => 'Text',
61 'default' => null,
62 'add' => '4.1',
63 'prefetch' => 1,
66f90900 64 'title' => 'Image Directory',
6a488035
TO
65 'is_domain' => 1,
66 'is_contact' => 0,
67 'description' => null,
68 'help_text' => null,
69 ),
70 'customFileUploadDir' => array(
71 'group_name' => 'Directory Preferences',
72 'group' => 'directory',
73 'name' => 'customFileUploadDir',
74 'type' => 'Url',
75 'html_type' => 'Text',
76 'default' => null,
77 'add' => '4.1',
78 'prefetch' => 1,
66f90900 79 'title' => 'Custom Files Upload Directory',
6a488035
TO
80 'is_domain' => 1,
81 'is_contact' => 0,
82 'description' => null,
83 'help_text' => null,
84 ),
85 'customTemplateDir' => array(
86 'group_name' => 'Directory Preferences',
87 'group' => 'directory',
88 'name' => 'customTemplateDir',
89 'type' => 'Url',
90 'html_type' => 'Text',
91 'default' => null,
92 'add' => '4.1',
93 'prefetch' => 1,
66f90900 94 'title' => 'Custom Template Directory',
6a488035
TO
95 'is_domain' => 1,
96 'is_contact' => 0,
97 'description' => null,
98 'help_text' => null,
99 ),
100 'customPHPPathDir' => array(
101 'group_name' => 'Directory Preferences',
102 'group' => 'directory',
103 'name' => 'customPHPPathDir',
104 'type' => 'Url',
105 'html_type' => 'Text',
106 'default' => null,
107 'add' => '4.1',
108 'prefetch' => 1,
66f90900 109 'title' => 'Custom PHP Path',
6a488035
TO
110 'is_domain' => 1,
111 'is_contact' => 0,
112 'description' => null,
113 'help_text' => null,
114 ),
115 'extensionsDir' => array(
116 'group_name' => 'Directory Preferences',
117 'group' => 'directory',
118 'name' => 'extensionsDir',
119 'type' => 'Url',
120 'html_type' => 'Text',
121 'default' => null,
122 'add' => '4.1',
123 'prefetch' => 1,
66f90900 124 'title' => 'Extensions Directory',
6a488035
TO
125 'is_domain' => 1,
126 'is_contact' => 0,
127 'description' => null,
128 'help_text' => null,
129 ),
130
131
232624b1 132);