Jump to content

Hook For Support Pin


Recommended Posts

Hi,

I tried using the below hook for support pin. Working fine and Pin is showing but Support Pin Word is not showing...Check Screenshot...please help

n7m7Wot.png

 

I found two hooks which is better 

1> HOOK 1

 

use WHMCS\View\Menu\Item as MenuItem;
add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar)
{
   $clientID = intval($_SESSION['uid']);
   $SupportPIN = rand(1000, 9999) . rand(1000, 9999);
   $firstSidebar = $primarySidebar->getFirstChild();
if ($firstSidebar) {
$firstSidebar->setBodyHtml($SupportPIN);
   }
});

2> HOOK 2

 

<?php

use WHMCS\View\Menu\Item as MenuItem;

add_hook('ClientAreaPrimarySidebar', 1, function (MenuItem $primarySidebar)
{
   // The Support PIN will be generated automatically and will change daily.
   // The Support PIN will have the format of: Day (1st and 2nd numbers), Month (3rd and 4th numbers), Client ID (5th, 6 or 7th number) and then the last 2 digits is the current year.

   $clientID = intval($_SESSION['uid']);
   $SupportPIN = date("dm".$clientID."y");
   $firstSidebar = $primarySidebar->getFirstChild();
   if ($firstSidebar) {
    $firstSidebar->setBodyHtml($SupportPIN);
   }
});
Link to comment
Share on other sites

14 hours ago, VirtualWorldGlobal said:

I tried using the below hook for support pin. Working fine and Pin is showing but Support Pin Word is not showing...Check Screenshot...please help

i'm not sure what you mean by Support Pin Word not showing (as neither hook generates a word), but i'll give you another alternative solution...

... those hooks can show the same pin in a sidebar, navbar, homepage panel or the admin area... and other places too. 🙂

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • 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