Remove unnecessary id attribute.
[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 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" *}
c5516062 13{if $linkButtons}
7bf3b68c 14 {foreach from=$linkButtons item=linkButton}
2fe04f0e 15 {if $linkButton.accessKey}
7bf3b68c
MWMC
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}
1e3df301 27 <a class="button" {$linkname} href="{crmURL p=$linkButton.url q=$linkButton.qs}" {$accessKey} {$linkButton.extra}><span>{$icon|smarty:nodefaults}{$linkButton.title}</span></a>
7bf3b68c
MWMC
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_'}
8a76e0df 33 {if !empty($location)}
57c59c34 34 {$form.buttons.$key.html|crmReplace:id:"$key-$location"}
029e030d 35 {else}
57c59c34 36 {$form.buttons.$key.html}
6a488035 37 {/if}
029e030d
MWMC
38 {/if}
39{/foreach}
dbdc5c34 40{/crmRegion}