Skip to content

Instantly share code, notes, and snippets.

@klaude
Created July 14, 2015 21:19
Show Gist options
  • Save klaude/05f6a8ffaa2e04f44a8f to your computer and use it in GitHub Desktop.
Save klaude/05f6a8ffaa2e04f44a8f to your computer and use it in GitHub Desktop.
<?php
use WHMCS\View\Menu\Item as MenuItem;
add_hook(
'ClientAreaPrimarySidebar',
1,
function(MenuItem $primarySidebar)
{
if ($primarySidebar->hasChild('My Account')) {
$primarySidebar->getChild('My Account')
->addChild(
'Mailing List Subscription Prefs',
array(
'label' => 'Subscription Preferences',
'uri' => 'subscriptionprefs.php',
'order' => '100',
'attributes' => array(
'target' => '_blank',
),
)
);
}
}
);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment