Magento Extensions Rating 2024
EXTENSIONS BY CATEGORY
B2B (Business-To-Business)
Blog
Customer
ERP (Enterprise Resource Planning)
Mega Menu
One Step Checkout
Order
POS (Point Of Sale)
Search
Shopping Cart
Sitemap
SEO
Social
Stock & Inventory Management
EXTENSIONS BY DEVELOPER
aheadWorks
Amasty
Boost My Shop
BSS Commerce
Magestore
MageWorx
Mirasvit
Templates Master
Wyomind
XTENTO
Magento 2 Documentation
Magento 2 Documentation
2.3
Documentation for Magento 2 CMS v2.3 (December 2018)
vendor
magento
framework
App
Test
Unit
Action
ActionFake.php
Go to the documentation of this file.
1
<?php
7
namespace
Magento\Framework\App\Test\Unit\Action
;
8
9
use \Magento\Framework\App\Action\Action;
10
11
class
ActionFake
extends
Action
12
{
16
public
function
execute
()
17
{
18
$this->
_forward
(
19
ActionTest::ACTION_NAME
,
20
ActionTest::CONTROLLER_NAME
,
21
ActionTest::MODULE_NAME
,
22
ActionTest::$actionParams
23
);
24
$this->
_redirect
(
ActionTest::FULL_ACTION_NAME
,
ActionTest::$actionParams
);
25
return
;
26
}
27
}
Magento\Framework\App\Action\Action\_redirect
_redirect($path, $arguments=[])
Definition:
Action.php:167
Magento\Framework\App\Test\Unit\Action\ActionFake
Definition:
ActionFake.php:11
Magento\Framework\App\Test\Unit\Action\ActionFake\execute
execute()
Definition:
ActionFake.php:16
Magento\Framework\App\Test\Unit\Action\ActionTest\FULL_ACTION_NAME
const FULL_ACTION_NAME
Definition:
ActionTest.php:59
Magento\Framework\App\Test\Unit\Action\ActionTest\$actionParams
static $actionParams
Definition:
ActionTest.php:81
Magento\Framework\App\Test\Unit\Action\ActionTest\CONTROLLER_NAME
const CONTROLLER_NAME
Definition:
ActionTest.php:74
Magento\Framework\App\Test\Unit\Action\ActionTest\ACTION_NAME
const ACTION_NAME
Definition:
ActionTest.php:69
Magento\Framework\App\Action\Action\_forward
_forward($action, $controller=null, $module=null, array $params=null)
Definition:
Action.php:137
Magento\Framework\App\Test\Unit\Action
Definition:
AbstractActionTest.php:7
Magento\Framework\App\Test\Unit\Action\ActionTest\MODULE_NAME
const MODULE_NAME
Definition:
ActionTest.php:79
Magento\Framework\App\Action\Action
Definition:
Action.php:25