How to hide Toolbox for anonymous user ??
Topic on Extension talk:DynamicSidebar
Appearance
This will make the toolbox disappear for everyone
$wgHooks['SidebarBeforeOutput'][] = function ( $skin, &$bar ) {
$temp = [];
foreach ($bar as $key => $innerArray) {
if ($key != "TOOLBOX")
{
$temp[$key] = $innerArray;
}
}
$bar = $temp;
};