]>
git.p6c8.net - selfforum.git/blob - selfforum-cgi/shared/Template/_conf.pm
6528d38b9c71187d2776561f4354dc4961714de4
3 # ====================================================
4 # Autor: n.d.p. / 2001-02-20
5 # lm : n.d.p. / 2001-02-20
6 # ====================================================
8 # Bereitstellung der Ausgabeparameter
9 # durch Kombination von User und Adminkonf.
10 # ====================================================
14 package Template
::_conf
;
16 # ====================================================
18 # ====================================================
20 use base
qw(Exporter);
21 @Template::_conf
::EXPORT
= qw(get_view_params);
23 ################################
26 # Ausgabeparameter bestimmen
27 ################################
29 sub get_view_params
($) {
31 my $default = $param -> {adminDefault
};
34 %hash = (quoteChars
=> $default -> {View
} -> {quoteChars
},
35 sortedMsg
=> $default -> {View
} -> {sortMessages
},
36 sortedThreads
=> $default -> {View
} -> {sortThreads
}
42 # ====================================================
43 # Modulinitialisierung
44 # ====================================================
46 # making require happy
49 # ====================================================
50 # end of Template::_conf
51 # ====================================================
patrick-canterino.de