کد PHP:
<?php
use WHMCS\View\Menu\Item as MenuItem;
add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar)
{
// The HTML for the link to the the special offer.
$specialOfferHtml = <<<EOT
<a href="//domain.com/discounts//">
<img src="/includes/img/takhfif.png" alt="جهت مشاهده تخفيفات کليلک کنيد!">
<strong><em>جهت مشاهده تخفيفات کليلک کنيد</em></strong>
</a>
EOT;
// Add a link to the special to the first panel's body HTML. It will render
// above the panel's menu item list.
$firstSidebar = $primarySidebar->getFirstChild();
if ($firstSidebar) {
$firstSidebar->setBodyHtml($specialOfferHtml);
}
});