Created
February 23, 2016 01:59
-
-
Save gillissm/02f607ca221412427346 to your computer and use it in GitHub Desktop.
Sample Sitecore command patch config file. This samples supports the custom commands to collapse and expand all feild sections in the content editor.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8"?> | |
<configuration xmlns:x="http://www.sitecore.net/xmlconfig/"> | |
<sitecore> | |
<commands> | |
<command name="thecodeattic:collapseall" | |
type="TheCodeAttic.CustomContentEditorButtons.CollapseAllCommand, TheCodeAttic.CustomContentEditorButtons"/> | |
<command name="thecodeattic:expandall" | |
type="TheCodeAttic.CustomContentEditorButtons.ExpandAllCommand, TheCodeAttic.CustomContentEditorButtons"/> | |
</commands> | |
</sitecore> | |
</configuration> | |
<!--RENAME FROM "XML" to "CONFIG" to user.--> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment