| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 |
- {if ($productinfo.paytype eq 'free') && in_array($productinfo.pid, $clientPids)}
- {include file="./nodoubletrial.tpl"}
- {else}
- {*
- route configureproduct by product id
- create a file named "configure_PID.tpl" to use a product matching orderform
- *}
- {assign var="customtemplate" value="templates/orderforms/thurdata/configure_{$productinfo.pid}.tpl"}
- {if file_exists("{$customtemplate}")}
- {assign var="templatename" value="./configure_{$productinfo.pid}.tpl"}
- {include $templatename}
- {else}
- {*
- route configureproduct by group id or name
- *}
- {*
- ThurMail Private => gid=1
- ThurFiles Private Hosting => gid=2
- Nextcloud Hosting => gid=3
- ThurVServer => gid=4
- ThurVCloud Private => gid=5
- ThurMail Zimbra => gid=7
- ThurMail Kerio => gid=16
- Mailhosting mit Nextcloud => gid=8
- ThurVCloud Business => gid=9
- ThurFiles Business Hosting => gid=10
- Website Builder => gid=19
- *}
- {if $productinfo.gid === 1}
- {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 || $productinfo.gid === 16}
- {include file='./configure_groupware.tpl'}
- {elseif $productinfo.gid === 15}
- {include file='./configure_webhosting.tpl'}
- {elseif $productinfo.gid === 19}
- {include file='./configure_sitebuilder.tpl'}
- {else}
- {include file='./configureproduct_default.tpl'}
- {/if}
- {/if}
- {/if}
|