Merge pull request #5898 from monishdeb/master
[civicrm-core.git] / templates / CRM / common / formButtons.tpl
1 {*
2 +--------------------------------------------------------------------+
3 | CiviCRM version 4.6 |
4 +--------------------------------------------------------------------+
5 | Copyright CiviCRM LLC (c) 2004-2015 |
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. *}
30 {crmRegion name='form-buttons'}
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}
37 {/if}
38 {crmGetAttribute html=$html attr='crm-icon' assign='icon'}
39 {crmGetAttribute html=$html attr='disabled' assign='disabled'}
40 <span class="crm-button crm-button-type-{$key|crmBtnType} crm-button{$key}{if $icon} crm-icon-button{/if}{if $disabled} crm-button-disabled{/if}"{if $buttonStyle} style="{$buttonStyle}"{/if}>
41 {if $icon}<span class="crm-button-icon ui-icon-{$icon}"> </span>{/if}
42 {$html}
43 </span>
44 {/if}
45 {/foreach}
46 {/crmRegion}