Is it possible to use this piece of code to hide the link "Explorer view" in
every document library for users who are not administrators?
if
SPControl.GetContextWeb(Context).Permissions.DoesUserHavePermissions((SPRigh
ts)SPPermissionGroup.Administrator)== true)
{
}
else
{
}
Thanks