Expand Minimize

Reference 15 hive in all images in CustomAction

A CustomAction can reference several images (like icons). Ensure that the URLs for these images points to the 15 hive.

CheckId SPC155701
TypeName Reference15HiveInURLsInCustomAction
Severity Warning
Type CustomAction

Replace all references to images in CustomAction with an URLs which points to the 15 hive. See sample below:

<Elements xmlns="http://schemas.microsoft.com/sharepoint/">
   <CustomAction Id="Ribbon.Library.Actions.ReplacementButton"
      Location="CommandUI.Ribbon"
      RegistrationId="101"
      RegistrationType="List"
      Title="Replace a Ribbon Button">
      <CommandUIExtension>
         <CommandUIDefinitions>
            <CommandUIDefinition Location="Ribbon.Library.Actions.ConnectToClient">
               <Button Id="Ribbon.Library.Actions.ConnectToClient.ReplacementButton"
                  Command="ReplacementButtonCommand"
                  Image16by16="~site/_layouts/15/images/icons/Icon16.png"
                  Image32by32="~site/_layouts/15/images/icons/Icon32.png"
                  LabelText="Replaced Button"
                  TemplateAlias="o2" />
            </CommandUIDefinition>
         </CommandUIDefinitions>
         ...
      </CommandUIExtension>
   </CustomAction>
</Elements>

To suppress this violation in XML SharePoint code add the following comment right before the XML tag which causes the rule violation. Learn more about SuppressMessage here.

<!-- "SuppressMessage":{"rule":"SPC155701:Reference15HiveInURLsInCustomAction","justification":"Provide reason for suppression here"} -->
Disclaimer: The views and opinions expressed in this documentation and in SPCAF do not necessarily reflect the opinions and recommendations of Microsoft or any member of Microsoft. SPCAF and RENCORE are registered trademarks of Rencore. All other trademarks, service marks, collective marks, copyrights, registered names, and marks used or cited by this documentation are the property of their respective owners.