Нашёл где генерируется меню по пунктам в файле /system/controllers/admin/frontend.php. Там я нашёл вот такой метод:
public function getAdminMenu(){ 'title' => LANG_CP_SECTION_CONTENT, 'url' => href_to($this->name, 'content'), 'class' => 'item-content' ) ), 'title' => LANG_CP_SECTION_CTYPES, 'url' => href_to($this->name, 'ctypes'), 'class' => 'item-ctypes' ) ), 'title' => LANG_CP_SECTION_MENU, 'url' => href_to($this->name, 'menu'), 'class' => 'item-menu' ) ), 'title' => LANG_CP_SECTION_WIDGETS, 'url' => href_to($this->name, 'widgets'), 'class' => 'item-widgets' ) ), 'title' => LANG_CP_SECTION_CONTROLLERS, 'url' => href_to($this->name, 'controllers'), 'class' => 'item-controllers' ) ), 'title' => LANG_CP_SECTION_USERS, 'url' => href_to($this->name, 'users'), 'class' => 'item-users' ) ), 'title' => LANG_CP_SECTION_SETTINGS, 'url' => href_to($this->name, 'settings'), 'class' => 'item-settings' ) ), ); }