Merge pull request #9773 from monishdeb/CRM-19663
[civicrm-core.git] / templates / CRM / common / formButtons.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
2c4c49ca 3 | CiviCRM version 4.7 |
6a488035 4 +--------------------------------------------------------------------+
2a73d3b0 5 | Copyright CiviCRM LLC (c) 2004-2017 |
6a488035
TO
6 +--------------------------------------------------------------------+
7 | This file is a part of CiviCRM. |
8 | |
9 | CiviCRM is free software; you can copy, modify, and distribute it |
10 | under the terms of the GNU Affero General Public License |
11 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
12 | |
13 | CiviCRM is distributed in the hope that it will be useful, but |
14 | WITHOUT ANY WARRANTY; without even the implied warranty of |
15 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
16 | See the GNU Affero General Public License for more details. |
17 | |
18 | You should have received a copy of the GNU Affero General Public |
19 | License and the CiviCRM Licensing Exception along |
20 | with this program; if not, contact CiviCRM LLC |
21 | at info[AT]civicrm[DOT]org. If you have questions about the |
22 | GNU Affero General Public License or the licensing of CiviCRM, |
23 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
24 +--------------------------------------------------------------------+
25*}
26
27{* Loops through $form.buttons.html array and assigns separate spans with classes to allow theming
28 by button and name. crmBtnType grabs type keyword from button name (e.g. 'upload', 'next', 'back', 'cancel') so
29 types of buttons can be styled differently via css. *}
dbdc5c34
CW
30{crmRegion name='form-buttons'}
31 {foreach from=$form.buttons item=button key=key name=btns}
6a488035
TO
32 {if $key|substring:0:4 EQ '_qf_'}
33 {if $location}
34 {assign var='html' value=$form.buttons.$key.html|crmReplace:id:"$key-$location"}
35 {else}
36 {assign var='html' value=$form.buttons.$key.html}
37 {/if}
fdb0ca2c 38 {crmGetAttribute html=$html attr='crm-icon' assign='icon'}
f62db3ac
AH
39 {capture assign=iconPrefix}{$icon|truncate:3:"":true}{/capture}
40 {if $icon && $iconPrefix eq 'fa-'}
41 {assign var='buttonClass' value=' crm-i-button'}
42 {capture assign=iconDisp}<i class="crm-i {$icon}"></i>{/capture}
43 {elseif $icon}
44 {assign var='buttonClass' value=' crm-icon-button'}
45 {capture assign=iconDisp}<span class="crm-button-icon ui-icon-{$icon}"> </span>{/capture}
46 {/if}
9f8862e1 47 {crmGetAttribute html=$html attr='disabled' assign='disabled'}
f62db3ac
AH
48 <span class="crm-button crm-button-type-{$key|crmBtnType} crm-button{$key}{$buttonClass}{if $disabled} crm-button-disabled{/if}"{if $buttonStyle} style="{$buttonStyle}"{/if}>
49 {$iconDisp}
fdb0ca2c 50 {$html}
deae896d 51 </span>
6a488035 52 {/if}
dbdc5c34
CW
53 {/foreach}
54{/crmRegion}