| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- {*
- route configureproduct by gorupname
- *}
- {*
- Mailhosting => gid=1
- ThurFiles Private Hosting => gid=2
- Nextcloud Hosting => gid=3
- ThurVServer => gid=4
- ThurVCloud Private => gid=5
- Groupware Hosting => gid=7
- Mailhosting mit Nextcloud => gid=8
- ThurVCloud Business => gid=9
- ThurFiles Business Hosting => gid=10
- *}
- {if $productinfo.gid === 1 || $productinfo.gid === 8}
- {include file='./configure_privat_mail.tpl'}
- {include file='./check_configure_privat_mail.tpl'}
- {elseif $productinfo.gid === 2}
- {include file='./configure_seafile.tpl'}
- {include file='./check_configure_seafile.tpl'}
- {elseif $productinfo.gid === 3}
- {include file='./configure_nextcloud.tpl'}
- {include file='./check_configure_nextcloud.tpl'}
- {elseif $productinfo.gid === 4}
- {include file='./configure_thurvserver.tpl'}
- {include file='./check_configure_thurvserver.tpl'}
- {elseif $productinfo.gid === 5}
- {include file='./configure_thurvcloud.tpl'}
- {else}
- {include file='./configureproduct_default.tpl'}
- {/if}
- {* {elseif $productinfo.gid === 3}
- {include file='./configure_nextcloud.tpl'}
- {include file='./check_configure_nextcloud.tpl'}
- *}
|