);
sub init_data {
+ return {} if !$::auth->client;
+
my $dbh = $::form->get_standard_dbh;
my $data = SL::DBUtils::selectfirst_hashref_query($::form, $dbh, qq|SELECT * FROM defaults|);
$data->{default_currency} = (SL::DBUtils::selectfirst_array_query($::form, $dbh, qq|SELECT name FROM currencies WHERE id = ?|, $data->{currency_id}))[0] if $data->{currency_id};
}
sub init_currencies {
+ return [] if !$::auth->client;
return [ map { $_->{name} } SL::DBUtils::selectall_hashref_query($::form, $::form->get_standard_dbh, qq|SELECT name FROM currencies ORDER BY id ASC|) ];
}
my $method = $AUTOLOAD;
$method =~ s/.*:://;
+ return if $method eq 'DESTROY';
+
if ($method =~ m/^get_/) {
$method = substr $method, 4;
return $self->data->{$method} if exists $self->data->{$method};
=item C<get_webdav>
-Returns the configuration for webdav
+Returns the configuration for WebDAV
=item C<get_webdav_documents>
-Returns the configuration for storing documents in the corresponding webdav folder
+Returns the configuration for storing documents in the corresponding WebDAV folder
=item C<get_vertreter>