![]() Server : Apache/2 System : Linux server-15-235-50-60 5.15.0-164-generic #174-Ubuntu SMP Fri Nov 14 20:25:16 UTC 2025 x86_64 User : gositeme ( 1004) PHP Version : 8.2.29 Disable Function : exec,system,passthru,shell_exec,proc_close,proc_open,dl,popen,show_source,posix_kill,posix_mkfifo,posix_getpwuid,posix_setpgid,posix_setsid,posix_setuid,posix_setgid,posix_seteuid,posix_setegid,posix_uname Directory : /home/gositeme/domains/gositeme.com/public_html/whmcs/templates/phox/payment/bank/ |
{if count($existingAccounts) > 0}
<div class="two-column-grid">
{foreach $existingAccounts as $bankAccount}
{assign "payMethod" $bankAccount.payMethod nocache}
<div class="paymethod-info" data-paymethod-id="{$bankAccount.paymethodid}">
<input
id="existingAccount{$bankAccount.paymethodid}"
type="radio"
name="paymethod"
class="existing-account icheck-button"
data-billing-contact-id="{$bankAccount.billingcontactid}"
{if $existingAccount && $payMethodId eq $bankAccount.paymethodid}
{assign "preselectedBillingContactId" {$bankAccount.billingcontactid}}
checked="checked"
data-loaded-paymethod="true"
{elseif !$existingAccount}
disabled="disabled"
{/if}
{if !$hasRemoteInput}onclick="hideNewAccountInputFields();"{/if}
value="{$bankAccount.paymethodid}"
>
</div>
<div class="paymethod-info" data-paymethod-id="{$bankAccount.paymethodid}">
<label for="existingAccount{$bankAccount.paymethodid}">
<i class="{$payMethod->getFontAwesomeIcon()}"></i>
</label>
</div>
<div class="paymethod-info" data-paymethod-id="{$bankAccount.paymethodid}">
<label for="existingAccount{$bankAccount.paymethodid}">
{$payMethod->payment->getDisplayName()}
</label>
</div>
<div class="paymethod-info" data-paymethod-id="{$bankAccount.paymethodid}">
<label for="existingAccount{$bankAccount.paymethodid}">
{$payMethod->getDescription()}
</label>
</div>
{/foreach}
</div>
{/if}
<div class="paymethod-info">
<label>
<input id="newAccountInfo"
type="radio"
class="icheck-button"
name="paymethod"
value="new"
{if $payMethodId eq "new" || !$existingAccount} checked="checked"{/if}
>
{lang key='paymentMethods.addNewBank'}
</label>
</div>