fix wrong spelling of classname
[civicrm-core.git] / templates / CRM / common / formButtons.tpl
CommitLineData
6a488035
TO
1{*
2 +--------------------------------------------------------------------+
fee14197 3 | CiviCRM version 5 |
6a488035 4 +--------------------------------------------------------------------+
6b83d5bd 5 | Copyright CiviCRM LLC (c) 2004-2019 |
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 30{crmRegion name='form-buttons'}
029e030d
MWMC
31{foreach from=$form.buttons item=button key=key name=btns}
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}
6a488035 37 {/if}
029e030d
MWMC
38 {crmGetAttribute html=$html attr='crm-icon' assign='icon'}
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}
47 {crmGetAttribute html=$html attr='disabled' assign='disabled'}
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}
50 {$html}
51 </span>
52 {/if}
53{/foreach}
dbdc5c34 54{/crmRegion}