Created
July 14, 2015 21:19
-
-
Save klaude/05f6a8ffaa2e04f44a8f to your computer and use it in GitHub Desktop.
Revisions
-
klaude created this gist
Jul 14, 2015 .There are no files selected for viewing
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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,25 @@ <?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', ), ) ); } } );