Magento 2:コントローラー、モジュール、アクション、ルーター名を取得する方法は?


回答:


33

コントローラークラスで以下のコードを使用して、コントローラー、モジュール、アクション、およびルート名を取得します。

<?php
    namespace Custom\Module\Controller\Index;

class Index extends \Magento\Framework\App\Action\Action
{
    protected $request;

    public function __construct(
        \Magento\Framework\App\Action\Context $context,
        \Magento\Framework\App\Request\Http $request
    ){
        parent::__construct($context);
        $this->request = $request;
    }

    public function execute()
    {
        $moduleName = $this->request->getModuleName();
        $controller = $this->request->getControllerName();
        $action     = $this->request->getActionName();
        $route      = $this->request->getRouteName();

        echo $moduleName."<br/>";
        echo $controller."<br/>";
        echo $action."<br/>";
        echo $route."<br/>";

        $this->_view->loadLayout();
        $this->_view->renderLayout();
    }
}

@Manashviこんにちは、referralUrlからコントローラーとアクションの名前を取得できますか?
ジャファーピンジャー18

14

phtmlファイルを取得するかcontroller、以下を使用します

echo $controllerName = $this->getRequest()->getControllerName();
echo $actionName = $this->getRequest()->getActionName();
echo $routeName = $this->getRequest()->getRouteName();
echo $moduleName = $this->getRequest()->getModuleName(); 

オブザーバーを設定するためのホームページコントローラーアクションを取得するにはどうすればよいですか?
supriyaのミシュラ

このコードをテストすると、ホームページに出力され、 controller:index,action:index,route:cms,module:cmsこれが役立つことを願っています。
カイザーサッティ

@QaisarSatti、参照URLからコントローラーとアクションの名前を取得できますか?$ this-> redirect-> getRefererUrl();
ジャファーピンジャー18

5

以下のコードスニペットを使用して、Magento 2のphtml、controller、およびイベントに

$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$requestInterface = $objectManager->get('Magento\Framework\App\RequestInterface');

$routeName      = $requestInterface->getRouteName();
$moduleName     = $requestInterface->getModuleName(); 
$controllerName = $requestInterface->getControllerName(); 
$actionName     = $requestInterface->getActionName();

3
ObjectManager直接インスタンス化しないでください。DIを介して必要なクラス/オブジェクトを注入する必要があります。
7ochem


1

これらの情報は、リクエストオブジェクトから取得できます。

あなたのcontrollerクラスで:

$routeName        = $this->getRequest()->getRouteName();
$moduleName       = $this->getRequest()->getModuleName();
$controllerName   = $this->getRequest()->getControllerName();
$actionName       = $this->getRequest()->getActionName();

これが役立つことを願っています。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.