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
| using Sitecore.Data; | |
| using Sitecore.Data.Items; | |
| using Sitecore.Diagnostics; | |
| using Sitecore.Shell.Applications.ContentEditor.Pipelines.RenderContentEditor; | |
| namespace SCXM.Panels.Pipelines.RenderContentEditor | |
| { | |
| public class SlidePanelInjector | |
| { | |
| public void Process(RenderContentEditorArgs args) |
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
| <configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
| <sitecore> | |
| <services> | |
| <configurator patch:instead="*[@type='Sitecore.Services.Infrastructure.DependencyInjection.ComponentServicesConfigurator, Sitecore.Services.Infrastructure']" type="MyServiceConfiguratorNamespace, MyAssemblyName"/> | |
| </services> | |
| </sitecore> | |
| </configuration> |
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
| [RequiredApiKeyExt] | |
| public class MyCustomApiController : ServicesApiController | |
| { | |
| // Controller logic... | |
| } |
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
| <configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
| <sitecore> | |
| <pipelines> | |
| <initialize> | |
| <processor | |
| type="FFB.Foundation.Backoffice.Pipelines.InitializeBuses,FFB.Foundation.Backoffice" | |
| patch:instead="*[@type='Sitecore.Messaging.InitializeBuses, Sitecore.Messaging']" | |
| resolve="true" /> | |
| </initialize> | |
| </pipelines> |
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
| using System; | |
| using System.Collections.Generic; | |
| using System.Globalization; | |
| using System.Threading.Tasks; | |
| using Sitecore.Diagnostics; | |
| using Sitecore.Events; | |
| using Sitecore.Messaging; | |
| using Sitecore.Messaging.Events; | |
| using Sitecore.Pipelines; |
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
| <ClientEvents> | |
| <ItemDoubleClick EventHandler="Users_onDoubleClick" /> | |
| <RenderComplete EventHandler="OnLoad" /> | |
| </ClientEvents> |
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
| <ClientEvents> | |
| <ItemDoubleClick EventHandler="Users_onDoubleClick" /> | |
| </ClientEvents> |
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
| function OnLoad() { | |
| var searchBox = document.querySelector("[id$=searchBox]"); | |
| if (searchBox) { | |
| searchBox.maxLength = 200; | |
| } | |
| } |
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
| <configuration xmlns:patch="http://www.sitecore.net/xmlconfig/"> | |
| <sitecore> | |
| <pipelines> | |
| <resolveTokens> | |
| <processor type="Arcwave.RichText.Pipelines.ResolveTokens.ResolveEditingTokens, Arcwave.RichText" resolve="true" patch:instead="*[@type='Sitecore.XA.Foundation.Editing.Pipelines.ResolveTokens.ResolveEditingTokens, Sitecore.XA.Foundation.Editing']" > | |
| <profileMapping type="Arcwave.RichText.Models.RteMappingConfiguration, Arcwave.RichText" > | |
| <rteMappings hint="raw:AddRteMappings"> | |
| <rteMappping name="Description1" rtePath="/sitecore/system/Settings/Html Editor Profiles/Arcwave Rich Text Query Matching/Sample Description 1" token="$arcwave1RichTextProfile"> | |
| <roles name="WebEntity"> | |
| <role>sitecore\Arcwave Webmaster</role> |
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
| namespace Arcwave.RichText.Models | |
| { | |
| using Sitecore.Xml; | |
| using System.Collections.Generic; | |
| using System.Linq; | |
| using System.Xml; | |
| public class RteMappingConfiguration | |
| { | |
| public List<RteMapping> MappingList { get; private set; } |