configureproduct.tpl 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. {if file_exists('./blubb.tpl')}
  2. {debug}
  3. {/if}
  4. {*
  5. route configureproduct by group id or name
  6. *}
  7. {*
  8. ThurMail Private => gid=1
  9. ThurFiles Private Hosting => gid=2
  10. Nextcloud Hosting => gid=3
  11. ThurVServer => gid=4
  12. ThurVCloud Private => gid=5
  13. ThurMail Zimbra => gid=7
  14. ThurMail Kerio => gid=16
  15. Mailhosting mit Nextcloud => gid=8
  16. ThurVCloud Business => gid=9
  17. ThurFiles Business Hosting => gid=10
  18. Website Builder => gid=19
  19. *}
  20. {if ($productinfo.paytype eq 'free') && in_array($productinfo.pid, $clientPids)}
  21. {include file="./nodoubletrial.tpl"}
  22. {else}
  23. {if $productinfo.gid === 1 || $productinfo.gid === 8}
  24. {include file='./configure_privat_mail.tpl'}
  25. {if $productinfo.gid === 19}
  26. {include file='./check_configure_kerio_privat_mail.tpl'}
  27. {else}
  28. {include file='./check_configure_privat_mail.tpl'}
  29. {/if}
  30. {elseif $productinfo.gid === 2}
  31. {include file='./configure_seafile.tpl'}
  32. {include file='./check_configure_seafile.tpl'}
  33. {elseif $productinfo.gid === 3}
  34. {include file='./configure_nextcloud.tpl'}
  35. {include file='./check_configure_nextcloud.tpl'}
  36. {elseif $productinfo.gid === 4}
  37. {include file='./configure_thurvserver.tpl'}
  38. {include file='./check_configure_thurvserver.tpl'}
  39. {elseif $productinfo.gid === 5}
  40. {include file='./configure_thurvcloud.tpl'}
  41. {elseif $productinfo.gid === 7 || $productinfo.gid === 16}
  42. {include file='./configure_groupware.tpl'}
  43. {elseif $productinfo.gid === 15}
  44. {include file='./configure_webhosting.tpl'}
  45. {elseif $productinfo.gid === 19}
  46. {include file='./configure_sitebuilder.tpl'}
  47. {else}
  48. {include file='./configureproduct_default.tpl'}
  49. {/if}
  50. {/if}
  51. {* {elseif $productinfo.gid === 3}
  52. {include file='./configure_nextcloud.tpl'}
  53. {include file='./check_configure_nextcloud.tpl'}
  54. *}