12345678910111213141516171819202122232425262728 |
- <?php
- /**
- * Copyright © Magento, Inc. All rights reserved.
- * See COPYING.txt for license details.
- */
- namespace Magento\Paypal\Controller\Payflowbml;
- class Start extends \Magento\Framework\App\Action\Action
- {
- /**
- * Action for Bill Me Later checkout button (product view and shopping cart pages)
- *
- * @return void
- */
- public function execute()
- {
- $this->_forward(
- 'start',
- 'payflowexpress',
- 'paypal',
- [
- 'bml' => 1,
- 'button' => $this->getRequest()->getParam('button')
- ]
- );
- }
- }
|