configureproduct.tpl 1.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. {*
  2. route configureproduct by gorupname
  3. *}
  4. {*
  5. Mailhosting => gid=1
  6. ThurFiles Private Hosting => gid=2
  7. Nextcloud Hosting => gid=3
  8. ThurVServer => gid=4
  9. ThurVCloud Private => gid=5
  10. Groupware Hosting => gid=7
  11. Mailhosting mit Nextcloud => gid=8
  12. ThurVCloud Business => gid=9
  13. ThurFiles Business Hosting => gid=10
  14. *}
  15. {if ($productinfo.paytype eq 'free') && in_array($productinfo.pid, $clientPids)}
  16. {include file="./nodoubletrial.tpl"}
  17. {else}
  18. {if $productinfo.gid === 1 || $productinfo.gid === 8}
  19. {include file='./configure_privat_mail.tpl'}
  20. {include file='./check_configure_privat_mail.tpl'}
  21. {elseif $productinfo.gid === 2}
  22. {include file='./configure_seafile.tpl'}
  23. {include file='./check_configure_seafile.tpl'}
  24. {elseif $productinfo.gid === 3}
  25. {include file='./configure_nextcloud.tpl'}
  26. {include file='./check_configure_nextcloud.tpl'}
  27. {elseif $productinfo.gid === 4}
  28. {include file='./configure_thurvserver.tpl'}
  29. {include file='./check_configure_thurvserver.tpl'}
  30. {elseif $productinfo.gid === 5}
  31. {include file='./configure_thurvcloud.tpl'}
  32. {elseif $productinfo.gid === 7}
  33. {include file='./configure_groupware.tpl'}
  34. {else}
  35. {include file='./configureproduct_default.tpl'}
  36. {/if}
  37. {/if}
  38. {* {elseif $productinfo.gid === 3}
  39. {include file='./configure_nextcloud.tpl'}
  40. {include file='./check_configure_nextcloud.tpl'}
  41. *}