Yii2 - Get Current Action ID in main.php

yii2

Solution

In a layout you can access the current controller via `$this->context`, and so the current action id by `$this->context->action->id`

Problem

In the file main.php at `views/layouts/main.php`, I want to add few classes to the body tag and add css class 'active' to the navigation bar items according to the view being displayed. Is there any way I can get action id in main.php? I hope that html is not req

Original source