回答:
これを試すことができます:\Magento\Framework\App\Request\Http
クラスコンストラクターにのインスタンスを挿入します。コントローラを使用している場合は、それを行う必要はありません。あなたはすでにこのようにそれにアクセスできます$request = $this->getRequest()
public function __construct(
...
\Magento\Framework\App\Request\Http $request
) {
...
$this->_request = $request;
}
次に、このようなホームページかどうかを確認できます。
if ($this->_request->getFullActionName() == 'cms_index_index') {
//you are on the homepage
}
if ($this->_request->getFullActionName() == 'catalog_product_view') {
//you are on the product page
}
if ($this->_request->getFullActionName() == 'catalog_category_view') {
//you are on the category page
}
$this->_request->getFullActionName()
使用して、広告を返すメソッドをphtmlファイルで使用します。
phtmlファイルの中からこれは私のために働きました:
if ($this->getRequest()->getFullActionName() == 'cms_index_index') {
//you are on the homepage
}
if ($this->getRequest()->getFullActionName() == 'catalog_product_view') {
//you are on the product page
}
if ($this->getRequest()->getFullActionName() == 'catalog_category_view') {
//you are on the category page
}
これを試してください:
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$request = $objectManager->get('Magento\Framework\App\Action\Context')->getRequest();
if ($request->getFullActionName() == 'cms_index_index') {
// is homepage
}
依存性注入の設計パターンのため。オンデマンドでリソースをリクエストするモジュールを作成します。オブジェクトマネージャはそのパラダイムに反対しています。しかし、それは素晴らしい働きをしますが、Mageを何度も使用するようなものです-遅いです。
以下のコードを試してください:
protected $_logo;
public function __construct(
\Magento\Backend\Block\Template\Context $context,
\Magento\Theme\Block\Html\Header\Logo $logo,
array $data = []
)
{
$this->_logo = $logo;
parent::__construct($context, $data);
}
public function isHomePage()
{
return $this->_logo->isHomePage();
}
オブジェクトマネージャの使用
$objectManager = \Magento\Framework\App\ObjectManager::getInstance();
$logo = $objectManager->get('Magento\Theme\Block\Html\Header\Logo');
var_dump($logo->isHomePage());