Revision 6c558186
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
SL/Template/Plugin/L.pm | ||
---|---|---|
83 | 83 |
return "<${tag}${attributes}>${content}</${tag}>"; |
84 | 84 |
} |
85 | 85 |
|
86 |
sub img_tag { |
|
87 |
my ($self, @slurp) = @_; |
|
88 |
my %options = _hashify(@slurp); |
|
89 |
|
|
90 |
$options{alt} ||= ''; |
|
91 |
|
|
92 |
return $self->html_tag('img', undef, %options); |
|
93 |
} |
|
94 |
|
|
86 | 95 |
sub select_tag { |
87 | 96 |
my $self = shift; |
88 | 97 |
my $name = shift; |
Auch abrufbar als: Unified diff
L.img_tag
weil L.html_tag aus templates heraus nicht in der lage ist undef als content zu übergeben