Merge pull request #19070 from mattwire/extensionupgrademsg
[civicrm-core.git] / templates / CRM / Admin / Form / Setting / Url.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}These settings define the URLs used to access CiviCRM resources (CSS files, Javascript files, images, etc.).{/ts}
13 </p>
14 <p>
15 {ts}You may configure these settings using absolute URLs or URL variables.{/ts}
16 {help id='id-url_vars'}
17 </p>
18 </div>
19 <div class="crm-block crm-form-block crm-url-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-url-form-block-userFrameworkResourceURL">
23 <td class="label">
24 {$form.userFrameworkResourceURL.label} {help id='id-resource_url'}
25 </td>
26 <td>
27 {$form.userFrameworkResourceURL.html|crmAddClass:'huge40'}
28 </td>
29 </tr>
30 <tr class="crm-url-form-block-imageUploadURL">
31 <td class="label">
32 {$form.imageUploadURL.label} {help id='id-image_url'}
33 </td>
34 <td>
35 {$form.imageUploadURL.html|crmAddClass:'huge40'}
36 </td>
37 </tr>
38 <tr class="crm-url-form-block-customCSSURL">
39 <td class="label">
40 {$form.customCSSURL.label} {help id='id-css_url'}
41 </td>
42 <td>
43 {$form.customCSSURL.html|crmAddClass:'huge40'}
44 </td>
45 </tr>
46 <tr class="crm-url-form-block-disable_core_css">
47 <td class="label">
48 {$form.disable_core_css.label} {help id='id-css_url'}
49 </td>
50 <td>
51 {$form.disable_core_css.html}<br />
52 <p class="description">{ts}{$disable_core_css_description}{/ts}</p>
53 </td>
54 </tr>
55 <tr class="crm-url-form-block-extensionsURL">
56 <td class="label">
57 {$form.extensionsURL.label} {help id='id-extensions_url'}
58 </td>
59 <td>
60 {$form.extensionsURL.html|crmAddClass:'huge40'}
61 </td>
62 </tr>
63 <tr class="crm-url-form-block-enableSSL">
64 <td class="label">
65 {$form.enableSSL.label} {help id='id-enable_ssl'}
66 </td>
67 <td>
68 {$form.enableSSL.html}
69 </td>
70 </tr>
71 <tr class="crm-url-form-block-verifySSL">
72 <td class="label">
73 {$form.verifySSL.label} {help id='id-verify_ssl'}
74 </td>
75 <td>
76 {$form.verifySSL.html}<br/>
77 <p class="description font-red">{ts}{$verifySSL_description}{/ts}</p>
78 </td>
79 </tr>
80 <tr class="crm-url-form-block-defaultExternUrl">
81 <td class="label">
82 {$form.defaultExternUrl.label} {help id='id-defaultExternUrl'}
83 </td>
84 <td>
85 {$form.defaultExternUrl.html}<br/>
86 <p class="description font-red">{ts}{$settings_fields.defaultExternUrl.description}{/ts}</p>
87 </td>
88 </tr>
89 </table>
90 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
91 </div>