Form.php 545 B

12345678910111213141516171819202122232425262728293031
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. namespace Magento\Payment\Block\Adminhtml\Transparent;
  7. /**
  8. * @api
  9. * @since 100.0.2
  10. */
  11. class Form extends \Magento\Payment\Block\Transparent\Form
  12. {
  13. /**
  14. * On backend this block does not have any conditional checks
  15. *
  16. * @return bool
  17. */
  18. protected function shouldRender()
  19. {
  20. return true;
  21. }
  22. /**
  23. * {inheritdoc}
  24. */
  25. protected function initializeMethod()
  26. {
  27. return;
  28. }
  29. }