Exemple #1
0
 static function populateForm($form)
 {
     $form->configure->email->value(basket::getEmailAddress());
     $form->configure->side_bar->checked(basket::is_side_bar_only());
     $form->configure->paypal->checked(basket::isPaypal());
     $form->configure->paypal_account->value(basket::getPaypalAccount());
     $form->configure->currency->selected(basket::getCurrency());
     $form->configure->allow_pickup->checked(basket::isAllowPickup());
     $form->configure->order_prefix->value(basket::getOrderPrefix());
 }
Exemple #2
0
 static function populateForm($form)
 {
     $form->configure->webshop->value(basket::getWebshop());
     $form->configure->website->value(basket::getWebsite());
     $form->configure->email->value(basket::getEmailAddress());
     $form->configure->side_bar->checked(basket::is_side_bar_only());
     $form->configure->paypal->checked(basket::isPaypal());
     $form->configure->paypal_account->value(basket::getPaypalAccount());
     $form->configure->currency->selected(basket::getCurrency());
     $form->configure->allow_pickup->checked(basket::isAllowPickup());
     $form->configure->pickup_location->value(basket::getPickupLocation());
     $form->configure->order_prefix->value(basket::getOrderPrefix());
     $form->configure->order_bankaccount->value(basket::getOrderBankAccount());
     $form->configure->order_accountowner->value(basket::getOrderAccountOwner());
 }
</b></td><?php 
    /* added 'width/<b>' JtK */
    ?>
          <td></td>
          <td style="text-align:right;" id="total"><b><?php 
    /* added class+<b>' JtK */
    echo $basket->ispp() ? basket::formatMoneyForWeb($total + $postage) : basket::formatMoneyForWeb($total);
    ?>
</b></td>
          <td></td>
        </tr>
        <?php 
    if ($postage > 0) {
        ?>
          <?php 
        if (basket::isAllowPickup()) {
            ?>
            <tr class="pretty-table3">
              <td colspan="5"><input id="pickup" type="checkbox" <?php 
            echo $basket->ispp() ? "" : "checked";
            ?>
/><?php 
            echo t(" Select if you wish to pick up the photos.");
            ?>
</td>
            </tr>
          <?php 
        }
        ?>
        <?php 
    }