]>
git.p6c8.net - selfforum.git/blob - selfforum-cgi/shared/Template/_conf.pm
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 = (quoting
=> $default -> {View
} -> {quoting
},
35 quoteChars
=> $default -> {View
} -> {quoteChars
},
36 sortedMsg
=> $default -> {View
} -> {sortMessages
},
37 sortedThreads
=> $default -> {View
} -> {sortThreads
}
43 # ====================================================
44 # Modulinitialisierung
45 # ====================================================
47 # making require happy
50 # ====================================================
51 # end of Template::_conf
52 # ====================================================
patrick-canterino.de