I have a custom action on the site settings page of my SharePoint site that appears in the UsersAndPermissions list. It is created using a function, this is the elements.xml file for this function:
<Elements xmlns="http://schemas.microsoft.com/sharepoint/"> <CustomAction Id="SDITeamGroupApplicationPage" GroupId="UsersAndPermissions" Location="Microsoft.SharePoint.SiteSettings" Sequence="1000" Title="Create a Team Group"> <UrlAction Url="_layouts/SDITeamGroupEdit.aspx"/> </CustomAction> </Elements>
Currently, all site users can see this link on the site settings page. I want to limit who can see this link. Is it possible? How can I do that?
sharepoint custom-action sharepoint-2007
Michael edwards
source share