Merge pull request #15800 from eileenmcnaughton/anet_valid
[civicrm-core.git] / templates / CRM / Admin / Form / Setting / Path.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | Copyright CiviCRM LLC. All rights reserved. |
4 | |
5 | This work is published under the GNU AGPLv3 license with some |
6 | permitted exceptions and without any warranty. For full license |
7 | and copyright information, see https://civicrm.org/licensing |
8 +--------------------------------------------------------------------+
9 *}
10 <div class="help">
11 <p>
12 {ts}You may configure these upload directories using absolute paths or path variables.{/ts}
13 {help id='id-path_vars'}
14 </p>
15 <p>
16 {ts}If you modify the defaults, make sure that your web server has write access to the directories.{/ts}
17 </p>
18 </div>
19 <div class="crm-block crm-form-block crm-path-form-block">
20 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
21 <table class="form-layout">
22 <tr class="crm-path-form-block-uploadDir">
23 <td class="label">{$form.uploadDir.label}</td>
24 <td>{$form.uploadDir.html|crmAddClass:'huge40'}<br />
25 <span class="description">{ts}File system path where temporary CiviCRM files - such as import data files - are uploaded.{/ts}</span>
26 </td>
27 </tr>
28 <tr class="crm-path-form-block-imageUploadDir">
29 <td class="label">{$form.imageUploadDir.label}</td>
30 <td>{$form.imageUploadDir.html|crmAddClass:'huge40'}<br />
31 <span class="description">{ts}File system path where image files are uploaded. Currently, this path is used for images associated with premiums (CiviContribute thank-you gifts).{/ts}</span>
32 </td>
33 </tr>
34 <tr class="crm-path-form-block-customFileUploadDir">
35 <td class="label">{$form.customFileUploadDir.label}</td>
36 <td>{$form.customFileUploadDir.html|crmAddClass:'huge40'}<br />
37 <span class="description">{ts}Path where documents and images which are attachments to contact records are stored (e.g. contact photos, resumes, contracts, etc.). These attachments are defined using 'file' type custom fields.{/ts}</span>
38 </td>
39 </tr>
40 <tr class="crm-path-form-block-customTemplateDir">
41 <td class="label">{$form.customTemplateDir.label}</td>
42 <td>{$form.customTemplateDir.html|crmAddClass:'huge40'}<br />
43 <span class="description">{ts}Path where site specific templates are stored if any. This directory is searched first if set. Custom JavaScript code can be added to templates by creating files named <em>templateFile.extra.tpl</em>.{/ts} {docURL page="Customize Built-in Screens" resource="wiki"}</span><br />
44 <span class="description">{ts}CiviCase configuration files can also be stored in this custom path.{/ts} {docURL page="user/case-management/set-up"}</span>
45 </td>
46 </tr>
47 <tr class="crm-path-form-block-customPHPPathDir">
48 <td class="label">{$form.customPHPPathDir.label}</td>
49 <td>{$form.customPHPPathDir.html|crmAddClass:'huge40'}<br />
50 <span class="description">{ts}Path where site specific PHP code files are stored if any. This directory is searched first if set.{/ts}</span>
51 </td>
52 </tr>
53 <tr class="crm-path-form-block-extensionsDir">
54 <td class="label">{$form.extensionsDir.label}</td>
55 <td>{$form.extensionsDir.html|crmAddClass:'huge40'}<br />
56 <span class="description">{ts}Path where CiviCRM extensions are stored.{/ts}</span>
57 </td>
58 </tr>
59 </table>
60 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
61 </div>