Revision b069a8db
Von Moritz Bunkus vor fast 14 Jahren hinzugefügt
SL/Controller/Base.pm | ||
---|---|---|
67 | 67 |
AUTH => $::auth, |
68 | 68 |
FORM => $::form, |
69 | 69 |
LOCALE => $::locale, |
70 |
LXCONFIG => { dbcharset => $::lx_office_conf{system}->{dbcharset}, |
|
71 |
webdav => $::lx_office_conf{system}->{webdav}, |
|
72 |
lizenzen => $::lx_office_conf{system}->{lizenzen}, |
|
73 |
latex_templates => $::lx_office_conf{print_templates}->{latex}, |
|
74 |
opendocument_templates => $::lx_office_conf{print_templates}->{opendocument}, |
|
75 |
vertreter => $::lx_office_conf{system}->{vertreter}, |
|
76 |
show_best_before => $::lx_office_conf{system}->{show_best_before}, |
|
77 |
}, |
|
70 |
LXCONFIG => \%::lx_office_conf, |
|
78 | 71 |
LXDEBUG => $::lxdebug, |
79 | 72 |
MYCONFIG => \%::myconfig, |
80 | 73 |
SELF => $self, |
... | ... | |
336 | 329 |
|
337 | 330 |
=item * C<LOCALE> -- C<$::locale> |
338 | 331 |
|
339 |
=item * C<LXCONFIG> -- all parameters from C<config/lx-erp.conf> with |
|
340 |
the same name they appear in the file (e.g. C<dbcharset>, C<webdav> |
|
341 |
etc) |
|
332 |
=item * C<LXCONFIG> -- all parameters from C<config/lx_office.conf> |
|
333 |
with the same name they appear in the file (first level is the |
|
334 |
section, second the actual variable, e.g. C<system.dbcharset>, |
|
335 |
C<features.webdav> etc) |
|
342 | 336 |
|
343 | 337 |
=item * C<LXDEBUG> -- C<$::lxdebug> |
344 | 338 |
|
Auch abrufbar als: Unified diff
Gesamte %::lx_office_conf als Objekt an Controller-basierte Templates übergeben