Revision edd7877e
Von Tamino Steinert vor 9 Monaten hinzugefügt
SL/Controller/RecordBase.pm | ||
---|---|---|
132 | 132 |
|
133 | 133 |
sub get_part_texts {...} |
134 | 134 |
|
135 |
|
|
136 | 135 |
1; |
136 |
|
|
137 |
__END__ |
|
138 |
|
|
139 |
=encoding utf-8 |
|
140 |
|
|
141 |
=head1 NAME |
|
142 |
|
|
143 |
SL::Controller::RecordBase - base controller for records |
|
144 |
|
|
145 |
=head1 SYNOPSIS |
|
146 |
|
|
147 |
This is a base implementation of the functionality of a controller for handling |
|
148 |
records with items. |
|
149 |
|
|
150 |
The aim is to provide a reusable implementation of the core functions for |
|
151 |
handling the form and templates. It uses the functions of C<SL::Model::Record> |
|
152 |
to handle the record objects of different record types correctly. |
|
153 |
|
|
154 |
=head1 BUGS |
|
155 |
|
|
156 |
Nothing here yet :) |
|
157 |
|
|
158 |
=head1 FURTHER WORK |
|
159 |
|
|
160 |
=over 4 |
|
161 |
|
|
162 |
=item * |
|
163 |
|
|
164 |
Create all standard functions for CRUD. |
|
165 |
|
|
166 |
=item * |
|
167 |
|
|
168 |
Move all duplicated functions from C<SL::Controller::Order>, |
|
169 |
C<SL::Controller::DeliveryOrder> and C<SL::Controller::Reclamation>. |
|
170 |
|
|
171 |
=back |
|
172 |
|
|
173 |
=head1 AUTHOR |
|
174 |
|
|
175 |
Tamino Steinert E<lt>tamino.steinert@tamino.stE<gt> |
|
176 |
|
|
177 |
=cut |
Auch abrufbar als: Unified diff
S:C:RecordBase: Dokumentation hinzugefügt