Hi!
I wrote a custom plugin and added the index.php page to the top menu ācampaignsā.
PhpList Version 3.3.1
My configuration in MyPlugin.php:
ā¦
public $topMenuLinks = array(
'index' => array('category' => 'campaigns')
);
public $pageTitles = array(
'index' => 'my plugin page'
);
public function adminmenu()
{
return array(
// page, description
'main' => 'Main Page',
'index' => 'my plugin page',
);
}
When Iām logged in as admin, I can see the new menu item. When I login as another user (even when this user has superuser rights), the menu item āmy plugin pageā disappears, even though I can access the page through the link in the startpage.
Why is the menu item only visible when admin is logged in?
Regards, Lisa