# in kivitendo.conf some regex may be defined:
# For no values just let it commented out
# PA = Produktionsauftrag, L = Lieferschein, ML = Materialliste
- # If you want several options, please seperate the letter with '|'. Example: '^(PA|L).*'
+ # If you want several options, please separate the letter with '|'. Example: '^(PA|L).*'
#set_sales_documenttype_for_delivered_quantity = '^(LS).*'
#set_purchase_documenttype_for_delivered_quantity = '^(EL).*'
#
=head1 DESCRIPTION
-This is a controller for handling files in a storage independant way.
+This is a controller for handling files in a storage independent way.
The storage may be a Filesystem,a WebDAV, a Database or DMS.
These backends must be configered in ClientConfig.
This Controller use as intermediate layer for storage C<SL::File>.
=head2 C<action_list>
This loads a list of files on a webpage. This can be done with a normal submit or via an ajax/json call.
-Dependant of file_type different sources are available.
+Dependent of file_type different sources are available.
For documents there are the 'created' source and the imports from scanners or email.
For attachments and images only the 'uploaded' source available.
=head2 C<action_ajax_unimport>
-Some files can be unimported, dependant of the source of the file. This means they are moved
+Some files can be unimported, dependent of the source of the file. This means they are moved
back to the directory of the source
Available C<FORM PARAMS>:
Martin Helmling E<lt>martin.helmling@opendynamic.deE<gt>
=cut
-
=head1 SYNOPSIS
# In a controller or helper ( see SL::Controller::File or SL::Helper::File )
- # you can create, remove, delete etc. a file in a backend independant way
+ # you can create, remove, delete etc. a file in a backend independent way
my $file = SL::File->save(
object_id => $self->object_id,
=head1 OVERVIEW
-The Filemanagemt can handle files in a storage independant way. Internal the File
+The Filemanagemt can handle files in a storage independent way. Internal the File
use the configured storage backend for the type of file.
These backends must be configured in L<SL::Controller::ClientConfig> or an extra database table.
Martin Helmling E<lt>martin.helmling@opendynamic.deE<gt>
=cut
-
=item C<rename PARAMS>
-The Filename of the file is changed. If the backend is not dependant from the filename
+The Filename of the file is changed. If the backend is not dependent from the filename
nothing must happens. The rename must work on all versions of the file.
Available C<PARAMS>:
Martin Helmling E<lt>martin.helmling@opendynamic.deE<gt>
=cut
-
-