| HTML-FormFu-ExtJS documentation | Contained in the HTML-FormFu-ExtJS distribution. |
HTML::FormFu::ExtJS::Element::Blank
version 0.090
Moritz Onken <onken@netcubed.de>
This software is Copyright (c) 2011 by Moritz Onken.
This is free software, licensed under:
The (three-clause) BSD License
| HTML-FormFu-ExtJS documentation | Contained in the HTML-FormFu-ExtJS distribution. |
# # This file is part of HTML-FormFu-ExtJS # # This software is Copyright (c) 2011 by Moritz Onken. # # This is free software, licensed under: # # The (three-clause) BSD License # package HTML::FormFu::ExtJS::Element::Blank; BEGIN { $HTML::FormFu::ExtJS::Element::Blank::VERSION = '0.090'; } use strict; use warnings; use utf8; sub render { my $class = shift; my $self = shift; my %attrs = $self->form->_get_attributes($self); my $html; if($attrs{html}) { $html = $attrs{html}; } elsif ($self->name) { $html = $self->{name}; } else { $html = " "; } return {html => $html }; } 1; __END__