init.agi 675 B

1234567891011121314151617181920212223
  1. /*
  2. arozos Management Gateway for business
  3. This is a regsitration script for initializing the management gateway
  4. as an interface module for administrator users
  5. */
  6. //Define the launchInfo for the module
  7. var moduleLaunchInfo = {
  8. Name: "Management Gateway",
  9. Desc: "System Management Interface for changing users, groups, services and toggle of system functions.",
  10. Group: "Interface Module",
  11. IconPath: "Management Gateway/img/small_icon.png",
  12. Version: "1.0",
  13. StartDir: "Management Gateway/index.html",
  14. SupportFW: true,
  15. LaunchFWDir: "Management Gateway/index.html",
  16. InitFWSize: [1080, 580],
  17. }
  18. //Register the module
  19. registerModule(JSON.stringify(moduleLaunchInfo));