Jump to content

mazinhost

Retired Forum Member
  • Posts

    1
  • Joined

  • Last visited

About mazinhost

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

mazinhost's Achievements

Junior Member

Junior Member (1/3)

0

Reputation

  1. <?php use WHMCS\View\Menu\Item as MenuItem; add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar) { GLOBAL $smarty; $departmentid = $smarty->getVariable('departmentid'); $status = $smarty->getVariable('status'); $validdepts = "3"; $statuslabel = Lang::trans('supportticketsstatusopen'); if (strpos($departmentid, $validdepts) !== false){ if (strpos($status, $statuslabel) !== false) { $footer = '<div><button class="btn btn-success btn-sm btn-block" onclick="jQuery(\'#ticketReply\').click()"><i class="fas fa-pencil-alt"></i> '.Lang::trans('supportticketsreply').'</button></div>'; if (!is_null($primarySidebar->getChild('Ticket Information'))) { $primarySidebar->getChild('Ticket Information')->setFooterHtml($footer); } } } }); it will work with filter that way
×
×
  • Create New...

Important Information

By using this site, you agree to our Terms of Use & Guidelines and understand your posts will initially be pre-moderated