Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<fieldset class="form-list">
<?php $_code=$this->getMethodCode() ?>

<?php if(count($this->displayInstallments()) > 1){ ?>
<?php if(count(explode(",",$this->displayInstallments())) > 1){ ?>

<ul id="payment_form_<?php echo $_code ?>" style="display:none">
<li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<fieldset class="form-list">
<?php $_code=$this->getMethodCode() ?>

<?php if(count($this->displayInstallments()) > 1){ ?>
<?php if(count(explode(",",$this->displayInstallments())) > 1){ ?>

<ul id="payment_form_<?php echo $_code ?>" style="display:none">
<li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,24 +1,24 @@
<fieldset class="form-list">
<?php $_code=$this->getMethodCode() ?>

<?php if(count($this->displayInstallments()) > 1){ ?>
<?php if(count(explode(",",$this->displayInstallments())) > 1){ ?>

<ul id="payment_form_<?php echo $_code ?>" style="display:none">
<li>
<div class="input-box">
<label for="<?php echo $_code ?>_cc_installments"><?php echo $this->__('Installments') ?></label><br />
<select id="<?php echo $_code ?>_cc_installments" name="cc_installments">

<?php $_ccInstallments = $this->getInfoData('cc_installments') ?>

<?php foreach ($this->displayInstallments() as $_allInstallments): ?>
<?php foreach ($_allInstallments as $_installmentsCode => $_installmentsName): ?>

<option value="<?php echo $_installmentsCode ?>"<?php if($_installmentsCode==$_ccInstallments): ?> selected="selected"<?php endif ?>><?php echo $_installmentsName ?></option>

<?php endforeach ?>
<?php endforeach ?>

</select>
</div>
</li>
Expand Down
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
<fieldset class="form-list">
<?php $_code=$this->getMethodCode() ?>

<?php if(count($this->displayInstallments()) > 1){ ?>
<?php if(count(explode(",",$this->displayInstallments())) > 1){ ?>

<ul id="payment_form_<?php echo $_code ?>" style="display:none">
<li>
Expand Down