use of net.jforum.util.TreeGroup in project jforum2 by rafaelsteil.
the class CategoryAction method insert.
// One more, one more
public void insert() {
this.context.put("groups", new TreeGroup().getNodes());
this.context.put("selectedList", new ArrayList());
this.setTemplateName(TemplateKeys.CATEGORY_INSERT);
this.context.put("action", "insertSave");
}
use of net.jforum.util.TreeGroup in project jforum2 by rafaelsteil.
the class GroupAction method insert.
// Insert
public void insert() {
this.context.put("groups", new TreeGroup().getNodes());
this.context.put("action", "insertSave");
this.context.put("selectedList", new ArrayList());
this.setTemplateName(TemplateKeys.GROUP_INSERT);
}
Aggregations