A Qcodo based CMS/ecommerce framework
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.3 KiB

12 years ago
  1. <?php
  2. // This is the HTML template include file (.tpl.php) for payment_methodEditPanel.
  3. // Remember that this is a DRAFT. It is MEANT to be altered/modified.
  4. // Be sure to move this out of the drafts/dashboard subdirectory before modifying to ensure that subsequent
  5. // code re-generations do not overwrite your changes.
  6. ?>
  7. <div id="formControls">
  8. <?php $_CONTROL->lblId->RenderWithName(); ?>
  9. <?php $_CONTROL->txtTitle->RenderWithName(); ?>
  10. <?php $_CONTROL->txtServiceProvider->RenderWithName(); ?>
  11. <?php $_CONTROL->txtServiceType->RenderWithName(); ?>
  12. <?php $_CONTROL->txtActionClassName->RenderWithName(); ?>
  13. <?php $_CONTROL->txtDescription->RenderWithName(); ?>
  14. <?php $_CONTROL->txtImageUri->RenderWithName(); ?>
  15. <?php $_CONTROL->chkActive->RenderWithName(); ?>
  16. <?php $_CONTROL->chkRequiresCcNumber->RenderWithName(); ?>
  17. <?php $_CONTROL->chkSaveCcNumber->RenderWithName(); ?>
  18. <?php $_CONTROL->chkTestMode->RenderWithName(); ?>
  19. <?php $_CONTROL->txtSortOrder->RenderWithName(); ?>
  20. <?php $_CONTROL->lstPaymentType->RenderWithName(); ?>
  21. </div>
  22. <div id="formActions">
  23. <div id="save"><?php $_CONTROL->btnSave->Render(); ?></div>
  24. <div id="cancel"><?php $_CONTROL->btnCancel->Render(); ?></div>
  25. <div id="delete"><?php $_CONTROL->btnDelete->Render(); ?></div>
  26. </div>