Revision 4e7776aa
Von Sven Schöling vor etwa 12 Jahren hinzugefügt
SL/Layout/Base.pm | ||
---|---|---|
65 | 65 |
# Interface |
66 | 66 |
######################################## |
67 | 67 |
|
68 |
sub add_stylesheets { |
|
69 |
&use_stylesheet; |
|
70 |
} |
|
71 |
|
|
68 | 72 |
sub use_stylesheet { |
69 | 73 |
my $self = shift; |
70 | 74 |
push @{ $self->{stylesheets} ||= [] }, @_ if @_; |
... | ... | |
105 | 109 |
return $css_path; |
106 | 110 |
} |
107 | 111 |
|
112 |
sub add_javascripts { |
|
113 |
&use_javascript |
|
114 |
} |
|
108 | 115 |
|
109 | 116 |
sub use_javascript { |
110 | 117 |
my $self = shift; |
Auch abrufbar als: Unified diff
add_[stylesheets|javascripts] aliase für use[stylesheet|javascript]