Hello everybody, thanks for your many replies. i meant normal pages in namespaces created by me. I implemented everything via the skin php. For the ones who are interessted in the code:
<?php
$test=$wgUser->getGroups(); $length= count($test); $count=0;
while ($count < $length){ if( $test[$count]=="usergroup1" || $test[$count]=="sysop"){ ?> <li> <a href="http://www.mywiki.de/index.php?title=Usergroup1:Home">Usergroup1 Portal</a> </li>
<?php } if ($test[$count]=="sysop"){ ?> <li> <a href="http://www.mywiki.de/index.php/Docu:Startseite">Documentation</a> </li> <?php
}
$count++; } ?>
Thanks a lot for the hints julia