use of net.jforum.SessionFacade in project jforum2 by rafaelsteil.
the class CacheAction method list.
/**
* @see net.jforum.Command#list()
*/
public void list() {
this.setTemplateName(TemplateKeys.CACHE_LIST);
this.context.put("bb", new BBCodeRepository());
this.context.put("modules", new ModulesRepository());
this.context.put("ranking", new RankingRepository());
this.context.put("smilies", new SmiliesRepository());
this.context.put("security", new SecurityRepository());
this.context.put("forum", new ForumRepository());
this.context.put("topic", new TopicRepository());
this.context.put("session", new SessionFacade());
this.context.put("posts", new PostRepository());
}
Aggregations