| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- {*
- 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.paytype eq 'free') && in_array($productinfo.pid, $clientPids)}
- {include file="./nodoubletrial.tpl"}
- {else}
- {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'}
- {elseif $productinfo.gid === 7}
- {include file='./configure_groupware.tpl'}
- {else}
- {include file='./configureproduct_default.tpl'}
- {/if}
- {/if}
- {* {elseif $productinfo.gid === 3}
- {include file='./configure_nextcloud.tpl'}
- {include file='./check_configure_nextcloud.tpl'}
- *}
|