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
| <img class="cq-placeholder-image" src="/libs/cq/ui/widgets/themes/default/placeholders/text.png"> |
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
| public class AssetConfigurationReader : Sitecore.XA.Foundation.Theming.Configuration.AssetConfigurationReader | |
| { | |
| public static AssetConfiguration Read() | |
| { | |
| return new AssetConfigurationReader().ReadConfiguration(); | |
| } | |
| public override AssetConfiguration ReadConfiguration() | |
| { |
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
| Get-ChildItem .\ -include bin,obj -Recurse | foreach ($_) { remove-item $_.fullname -Force -Recurse } |
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
| /// <summary> | |
| /// Helper class providing methods to load application resource files. | |
| /// </summary> | |
| public static class ResourceFileLoader | |
| { | |
| /// <summary> | |
| /// Loads file from resources and creates XDocument from its content. | |
| /// </summary> | |
| /// <param name="namespacePath">assembly root namespace plus path to | |
| /// resource folder within directory structure (eg. <c>Forcom.Perspectiv.Server</c> |
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
| var node = new ConditionNode | |
| { | |
| LhsOperand = new PropertyOperand | |
| { | |
| OperandDescription = new PropertyDescription(TypeId.GetTypeId<DateTime>(), | |
| new LocalizableString { ResourceKey = PromotionSharedStrings.ResourceNames.ReportPromotionDateTo }, | |
| new NHibernateMetadata | |
| { | |
| FieldName = "rp.DateTo", | |
| RequiredJoins = new string[0], |