Categories: Magento

How To Get Controller, Module, Action and Router name in Magento.?

Get Controller, Module, Action and Router name:-

Magento has many numbers of the Controller, Module, Action & Router, sometimes  it might difficult to get the current name of the Controller, Module, Action & Router name in Magento. With this post we are going to describe how to fetch the correct information regarding controller name, action name, router name and module name from template, class files or anywhere in Magento.


Find Controller, Module, Action & Router Name In Template Files:

Example 1 : Get Controller Name In Template File

$this->getRequest()->getControllerName(); // get controller name

Example 2 : Get Action Name In Template Files

$this->getRequest()->getActionName(); //get Action name, i.e. the function inside the controller

Example 3 : Get Router Name In Template Files

$this->getRequest()->getRouteName(); // get router name

Example 4 : Get Module Name In Template Files:

$this->getRequest()->getModuleName(); //get module name

Example 5 : Get namespace & Module Name

$this->getRequest()->getControllerModule();//for example, if you are in checkout page ,then
this will return Mage_Checkout.

Find Controller, Module, Action & Router Name In Class Files:


Example 6 : Get Controller Name In Class Files

Mage::app()->getRequest()->getControllerName(); //get controller name

Example 7 : Get Action Name In Class Files

Mage::app()->getRequest()->getActionName(); //get Action name, i.e. the function inside the 
controller

Example 8 : Get Router Name In Class Files

Mage::app()->getRequest()->getRouteName();//get router name

Example 9 : Get Module Name In Class Files

Mage::app()->getRequest()->getModuleName(); //get module name

These above functions getControllerName, getActionName, getRouteName, getModuleName are present in the class Mage_Core_Model_Url

You can find all requests with using print_r.

echo "<pre>"; print_r(Mage::app()->getRequest());    

Rohan pathak

Recent Posts

What Is a Progressive Web App? Why Would You Need One?

App usage is growing steadily without showing any signs of slowing down. Hence, it is no surprise that mobile applications…

11 months ago

7 Most Popular Paid Online Advertising Strategy

As the world has grown more digital, businesses have adapted themselves. An effectual adaptation includes online advertising. Offline advertising styles…

12 months ago

The Importance of User-Centered Design in Mobile App Development

Step into a world where apps dance to the user's tune. Picture Instagram, a photo-sharing sensation that swept the globe.…

1 year ago

Healthcare Mobile App Development: A Complete Guide for Founders

COVID-19 has led to a digitalization of lifestyle. As patients are taking their mental and physical health more seriously, healthcare…

1 year ago

Exploring Diverse WordPress Theme Niches: A Comprehensive Guide

Introduction WordPress, an immensely popular content management system (CMS), powers over 40% of the internet. What makes WordPress even more…

1 year ago

8 Awesome Blog Content Ideas for Movers to Skyrocket the SEO

For moving companies trying to capture their market share amidst stiff competition, a tip or two about what they can…

1 year ago