*/
public class ExportTemplateActionItem extends BaseActionItem {
public void onComponentSelection() {
LinkerSelectionContext lh = linker.getSelectionContext();
if (linker instanceof EditLinker) {
new ContentExportTemplate(linker, "/templateSets/"+JahiaGWTParameters.getSiteKey(), JahiaGWTParameters.getSiteKey()).show();
} else {
new ContentExportTemplate(linker, lh.getSingleSelection()).show();
}
}