Payflowadvanced.php 878 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <?php
  2. /**
  3. * Copyright © Magento, Inc. All rights reserved.
  4. * See COPYING.txt for license details.
  5. */
  6. /**
  7. * Payments Advanced gateway model
  8. */
  9. namespace Magento\Paypal\Model;
  10. class Payflowadvanced extends \Magento\Paypal\Model\Payflowlink
  11. {
  12. /**
  13. * Payment method code
  14. *
  15. * @var string
  16. */
  17. protected $_code = \Magento\Paypal\Model\Config::METHOD_PAYFLOWADVANCED;
  18. /**
  19. * Type of block that generates method form
  20. *
  21. * @var string
  22. */
  23. protected $_formBlockType = \Magento\Paypal\Block\Payflow\Advanced\Form::class;
  24. /**
  25. * Type of block that displays method information
  26. *
  27. * @var string
  28. */
  29. protected $_infoBlockType = \Magento\Paypal\Block\Payment\Info::class;
  30. /**
  31. * Controller for callback urls
  32. *
  33. * @var string
  34. */
  35. protected $_callbackController = 'payflowadvanced';
  36. }