501c15d23e401f10e099aace54c87ef486846485
[kivitendo-erp.git] / SL / Layout / ActionBar / ScriptButton.pm
1 package SL::Layout::ActionBar::ScriptButton;
2
3 use strict;
4 use parent qw(SL::Layout::ActionBar::Action);
5
6 sub render {
7   $_[0]->p->html_tag('div', $_[0]->text,
8     id    => $_[0]->id,
9     class => 'layout-actionbar-action layout-actionbar-scriptbutton',
10   );
11 }
12
13 1;