Merge pull request #18653 from eileenmcnaughton/token
[civicrm-core.git] / templates / CRM / Admin / Form / Setting / UF.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 {ts}These settings define the CMS variables that are used with CiviCRM.{/ts}
12 </div>
13 <div class="crm-block crm-form-block crm-uf-form-block">
14 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="top"}</div>
15 <table class="form-layout-compressed">
16 <tr class="crm-uf-form-block-userFrameworkUsersTableName">
17 <td class="label">{$form.userFrameworkUsersTableName.label}</td>
18 <td>{$form.userFrameworkUsersTableName.html}</td>
19 </tr>
20 {if $form.wpBasePage}
21 <tr class="crm-uf-form-block-wpBasePage">
22 <td class="label">{$form.wpBasePage.label}</td>
23 <td>{$config->userFrameworkBaseURL}{$form.wpBasePage.html}
24 <p class="description">{ts 1=$config->userFrameworkBaseURL}By default, CiviCRM will generate front-facing pages using the home page at %1 as its base. If you want to use a different template for CiviCRM pages, set the path here.{/ts}</p>
25 </td>
26 </tr>
27 {/if}
28 <tr class="crm-uf-form-block-syncCMSEmail">
29 <td class="label">{$form.syncCMSEmail.label}</td>
30 <td>{$form.syncCMSEmail.html}</td>
31 </tr>
32 </table>
33 <div class="crm-submit-buttons">{include file="CRM/common/formButtons.tpl" location="bottom"}</div>
34 <div class="spacer"></div>
35 {if $tablePrefixes}
36 <div class="form-item">
37 <fieldset>
38 <legend>{ts}Views integration settings{/ts}</legend>
39 <div>{ts}To enable CiviCRM Views integration, add or update the following item in the <code>settings.php</code> file:{/ts}</div>
40 <pre>{$tablePrefixes}</pre>
41 </fieldset>
42 </div>
43 {/if}
44 </div>