Created
July 14, 2015 21:19
-
-
Save klaude/05f6a8ffaa2e04f44a8f to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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