Your IP : 216.73.216.86


Current Path : /var/www/homesaver/www/bitrix/modules/fermaofd.ferma/components/
Upload File :
Current File : /var/www/homesaver/www/bitrix/modules/fermaofd.ferma/components/payment-type-selector.php

<?php

function paymentTypeSelector($id, $name)
{
    $items = array_reduce(
        CPaymentTypeCollection::$collection,
        function ($result, $item) {
            $result .= sprintf('<option value="%s" #VALUE-PaymentType%s#>%s</option>', $item['id'], $item['id'], $item['name']);

            return $result;
        },
        ''
    );

    ?>
    <select name="<?= htmlspecialcharsbx($name) ?>"
            id="<?= htmlspecialcharsbx($id) ?>"
            data-role="payment-type-input">
        <option value="0">---</option><?= $items ?>
    </select>
    <?php
}