Magento 2 temel geliştirme kursunu alıyorum ve Yönetici Yönlendirici / Denetleyici alıştırması güncel değil. Yönlendirici çalışıyor, ancak denetleyici çalışmıyor, her zaman yönetici ana sayfasına yeniden yönlendirilir. Yönlendirici uygulaması / kodu / Eğitim / Test / etc / adminhtml / route.xml kodu :
<?xml version="1.0"?>
<config xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../../../../../../vendor/magento/framework/App/etc/routes.xsd">
<router id="admin">
<route id="test" frontName="test">
<module name="Training_Test" before="Magento_Backend" />
</route>
</router>
</config>
Yönetici denetleyicisi uygulaması / kodu / Eğitim / Test / Denetleyici / Adminhtml / Action / Index.php kodu :
<?php
namespace Training\Test\Controller\Adminhtml\Action;
class Index extends \Magento\Backend\App\Action
{
public function execute()
{
die("test reached controller");
}
protected function _isAllowed() {
return true;
}
}
Ben admin / test / action / index admin url'sine gittiğimde sadece yönlendirir ve hiçbir şey olmaz. Bir kurucu ekleyip xdebug kullanırsam, denetleyici kurucusuna ulaştığını gösterir, ancak hiçbir zaman yürütme parçasını yapmaz. Neyi kaçırıyorum?