Revision 0a385d07
Von Sven Schöling vor fast 17 Jahren hinzugefügt
SL/Template/Plugin/MultiColumnIterator.pm | ||
---|---|---|
151 | 151 |
sub index { |
152 | 152 |
$main::lxdebug->enter_sub(); |
153 | 153 |
my ($self) = @_; |
154 |
$self->{ INDEX }; |
|
155 | 154 |
$main::lxdebug->leave_sub(); |
155 |
return $self->{ INDEX }; |
|
156 | 156 |
} |
157 | 157 |
|
158 | 158 |
sub number { |
159 | 159 |
$main::lxdebug->enter_sub(); |
160 | 160 |
my ($self) = @_; |
161 |
$self->{ NUMBER }; |
|
162 | 161 |
$main::lxdebug->leave_sub(); |
162 |
return $self->{ NUMBER }; |
|
163 | 163 |
} |
164 | 164 |
|
165 |
sub count { |
|
166 |
$main::lxdebug->enter_sub(); |
|
167 |
my ($self) = @_; |
|
168 |
$main::lxdebug->leave_sub(); |
|
169 |
return $self->{ COUNT }; |
|
170 |
} |
|
165 | 171 |
sub max { |
166 | 172 |
$main::lxdebug->enter_sub(); |
167 | 173 |
my ($self) = @_; |
168 |
$self->{ MAX }; |
|
169 | 174 |
$main::lxdebug->leave_sub(); |
175 |
return $self->{ MAX }; |
|
170 | 176 |
} |
171 | 177 |
|
172 | 178 |
sub size { |
173 | 179 |
$main::lxdebug->enter_sub(); |
174 | 180 |
my ($self) = @_; |
175 |
$self->{ SIZE }; |
|
176 | 181 |
$main::lxdebug->leave_sub(); |
182 |
return $self->{ SIZE }; |
|
177 | 183 |
} |
178 | 184 |
|
179 | 185 |
sub first { |
180 | 186 |
$main::lxdebug->enter_sub(); |
181 | 187 |
my ($self) = @_; |
182 |
$self->{ FIRST }; |
|
183 | 188 |
$main::lxdebug->leave_sub(); |
189 |
return $self->{ FIRST }; |
|
184 | 190 |
} |
185 | 191 |
|
186 | 192 |
sub last { |
187 | 193 |
$main::lxdebug->enter_sub(); |
188 | 194 |
my ($self) = @_; |
189 |
$self->{ LAST}; |
|
190 | 195 |
$main::lxdebug->leave_sub(); |
196 |
return $self->{ LAST}; |
|
191 | 197 |
} |
192 | 198 |
|
193 | 199 |
1; |
Auch abrufbar als: Unified diff
Und noch ein Bugfix.
size/count etc. wurden nicht rihctig exportiert.