-
Notifications
You must be signed in to change notification settings - Fork 68
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
SFBuild
committed
Sep 14, 2021
1 parent
8c0bcde
commit 60c72f5
Showing
30 changed files
with
1,212 additions
and
37,813 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
223 changes: 204 additions & 19 deletions
223
Telerik.Sitefinity.Frontend/Mvc/Helpers/ResourceHelper.cs
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
|
||
namespace Telerik.Sitefinity.Frontend.Resources | ||
{ | ||
/// <summary> | ||
/// This class represents one resource item | ||
/// </summary> | ||
internal class ResourceItem | ||
{ | ||
/// <summary> | ||
/// Gets or sets the source of the resource item. | ||
/// </summary> | ||
/// <value>The name of the provider.</value> | ||
public string ResourceKey { get; set; } | ||
|
||
/// <summary> | ||
/// Gets or sets the attributes that will be set to the rendered resource. | ||
/// </summary> | ||
/// <value>The attributes that will be set to the rendered resource.</value> | ||
public List<KeyValuePair<string, string>> Attributes { get; set; } | ||
|
||
public ResourceItem(string resourceKey, List<KeyValuePair<string, string>> attributes) | ||
{ | ||
ResourceKey = resourceKey; | ||
Attributes = attributes; | ||
} | ||
} | ||
} |
Oops, something went wrong.