How to get current controller name and action name in Yii?
|
|
|
|
|
Question: How to get current controller name and action name in Yii?
Answer:
$controller=Yii::app()->controller;
$action=$controller->action;
//Getting the current action
echo $action->id;
//Getting the current controller
$controller->uniqueID
|