1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17 package org.exoplatform.wcm.webui.seo;
18
19
20 import java.util.Date;
21
22 import org.exoplatform.webui.application.WebuiRequestContext;
23 import org.exoplatform.webui.config.annotation.ComponentConfig;
24 import org.exoplatform.webui.core.UIPopupContainer;
25 import org.exoplatform.webui.core.UIPortletApplication;
26 import org.exoplatform.webui.core.lifecycle.UIApplicationLifecycle;
27
28
29
30
31
32
33
34 @ComponentConfig(lifecycle = UIApplicationLifecycle.class)
35 public class UISEOToolbarPortlet extends UIPortletApplication {
36
37 public UISEOToolbarPortlet() throws Exception {
38 addChild(UIPopupContainer.class, null, "UIPopupContainer-" + new Date().getTime());
39 addChild(UISEOToolbarForm.class, null, null);
40 }
41
42
43 @Override
44 public void processRender(WebuiRequestContext context) throws Exception {
45 super.processRender(context);
46 }
47
48
49 }