0 Comments

Chris O’Brien’s wrote a great article about, customizing the _layouts/settings.aspx page with CustomActions

http://www.sharepointnutsandbolts.com/2007/07/using-customaction-to-modify-system.html

For example

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
  <CustomActionGroup
   Id="CustomActionGroupAdminSetting"
   Description=""
   Title="$Resources:Resources, CustomActionGroupTitle"
   Location="Microsoft.SharePoint.SiteSettings"
   Sequence="9" />
  <CustomAction
    GroupId="CustomActionAdminSetting"
    Title="$Resources:Resources,CustomActionTitle"
    Description="$Resources:Resources,CustomActionDescription"
    Location="Microsoft.SharePoint.SiteSettings"
    Sequence="11"

    Id="CustomActionSettings"
    >
    <UrlAction Url="/CustomSettings.aspx"/>
  </CustomAction>
</Elements>

Leave a Reply

Your email address will not be published. Required fields are marked *

This site uses Akismet to reduce spam. Learn how your comment data is processed.