Main.js 751 B

12345678910111213141516171819202122232425
  1. MWF.APPWD = MWF.xApplication.portal.WidgetDesigner;
  2. MWF.APPWD.options = {
  3. "multitask": true,
  4. "executable": false
  5. };
  6. MWF.xDesktop.requireApp("portal.PageDesigner", "lp."+MWF.language, null, false);
  7. MWF.xDesktop.requireApp("portal.PageDesigner", "", null, false);
  8. MWF.xApplication.portal.WidgetDesigner.Main = new Class({
  9. Extends: MWF.xApplication.portal.PageDesigner.Main,
  10. Implements: [Options, Events],
  11. options: {
  12. "style": "default",
  13. "template": "page.json",
  14. "templateId": "",
  15. "name": "portal.WidgetDesigner",
  16. "icon": "icon.png",
  17. "title": MWF.APPWD.LP.title,
  18. "appTitle": MWF.APPWD.LP.title,
  19. "id": "",
  20. "actions": null,
  21. "category": null,
  22. "processData": null
  23. }
  24. });