How to Open A Page in New Tab from Menu Item (v2021)

For example, you want to open News page which has URL as news from demo project of PHPMaker 2021, then you may simply insert the following code in MenuItem_Adding server event before the return true; line:

if ($item->Url == "news") {
    $item->Target = "_blank";
}