Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
モジュールを作成し、それをカスタム レイアウト (ルート - 製品/カテゴリ) に割り当てました。このページでは、モジュールの内容のみを表示する必要があります。
モジュールが現在のレイアウトに割り当てられているかどうかを確認する方法はありますか?
以下のようなもの、
if ($current module = "Product_list") { // Dont display products } else { // Else display products }
これをモジュールコード自体にコーディングしている場合は、現在のルートを確認するだけです
if(!empty($this->request->get['route']) && $this->request->get['route'] == 'product/category') { ... Code ... } else { ... Code ... }