Merge pull request #18139 from totten/master-region-bits
[civicrm-core.git] / templates / CRM / common / formButtons.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
1188c7a8 3 | Copyright CiviCRM LLC. All rights reserved. |
6a488035 4 | |
1188c7a8
TO
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 |
6a488035
TO
8 +--------------------------------------------------------------------+
9*}
10
dbdc5c34 11{crmRegion name='form-buttons'}
7bf3b68c
MWMC
12{* Loops through $linkButtons and assigns html "a" (link) buttons to the template. Used for additional entity functions such as "Move to Case" or "Renew Membership" *}
13{if $linkButtons}
14 {foreach from=$linkButtons item=linkButton}
15 {if $linkButton.accesskey}
16 {capture assign=accessKey}accesskey="{$linkButton.accessKey}"{/capture}
17 {else}{assign var="accessKey" value=""}
18 {/if}
19 {if $linkButton.icon}
13a3d214 20 {capture assign=icon}<i class="crm-i {$linkButton.icon}" aria-hidden="true"></i> {/capture}
7bf3b68c
MWMC
21 {else}{assign var="icon" value=""}
22 {/if}
23 {if $linkButton.ref}
24 {capture assign=linkname}name="{$linkButton.ref}"{/capture}
25 {else}{capture assign=linkname}name="{$linkButton.name}"{/capture}
26 {/if}
27 <a class="button" {$linkname} href="{crmURL p=$linkButton.url q=$linkButton.qs}" {$accessKey} {$linkButton.extra}><span>{$icon}{$linkButton.title}</span></a>
28 {/foreach}
29{/if}
30
029e030d
MWMC
31{foreach from=$form.buttons item=button key=key name=btns}
32 {if $key|substring:0:4 EQ '_qf_'}
33 {if $location}
a3760605 34 {$form.buttons.$key.html|crmReplace:id:"$key-$location"}
029e030d 35 {else}
a3760605 36 {$form.buttons.$key.html}
6a488035 37 {/if}
029e030d
MWMC
38 {/if}
39{/foreach}
dbdc5c34 40{/crmRegion}