-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
2b266f2
commit 8005443
Showing
36 changed files
with
828 additions
and
8 deletions.
There are no files selected for viewing
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
78 changes: 78 additions & 0 deletions
78
src/TrainingGuides.Entities/ReusableContentTypes/Interview/Interview.generated.cs
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,78 @@ | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace TrainingGuides | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="Interview"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class Interview : IContentItemFieldsSource, IArticleSchema | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "TrainingGuides.Interview"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// IntervieweeName. | ||
/// </summary> | ||
public string IntervieweeName { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTitle. | ||
/// </summary> | ||
public string ArticleSchemaTitle { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTeaser. | ||
/// </summary> | ||
public IEnumerable<Asset> ArticleSchemaTeaser { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaSummary. | ||
/// </summary> | ||
public string ArticleSchemaSummary { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaText. | ||
/// </summary> | ||
public string ArticleSchemaText { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaRelatedArticles. | ||
/// </summary> | ||
public IEnumerable<Article> ArticleSchemaRelatedArticles { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTaxonomy. | ||
/// </summary> | ||
public IEnumerable<TagReference> ArticleSchemaTaxonomy { get; set; } | ||
} | ||
} |
72 changes: 72 additions & 0 deletions
72
src/TrainingGuides.Entities/ReusableContentTypes/NewsArticle/NewsArticle.generated.cs
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,72 @@ | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace TrainingGuides | ||
{ | ||
/// <summary> | ||
/// Represents a content item of type <see cref="NewsArticle"/>. | ||
/// </summary> | ||
[RegisterContentTypeMapping(CONTENT_TYPE_NAME)] | ||
public partial class NewsArticle : IContentItemFieldsSource, IArticleSchema | ||
{ | ||
/// <summary> | ||
/// Code name of the content type. | ||
/// </summary> | ||
public const string CONTENT_TYPE_NAME = "TrainingGuides.NewsArticle"; | ||
|
||
|
||
/// <summary> | ||
/// Represents system properties for a content item. | ||
/// </summary> | ||
[SystemField] | ||
public ContentItemFields SystemFields { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTitle. | ||
/// </summary> | ||
public string ArticleSchemaTitle { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTeaser. | ||
/// </summary> | ||
public IEnumerable<Asset> ArticleSchemaTeaser { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaSummary. | ||
/// </summary> | ||
public string ArticleSchemaSummary { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaText. | ||
/// </summary> | ||
public string ArticleSchemaText { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaRelatedArticles. | ||
/// </summary> | ||
public IEnumerable<Article> ArticleSchemaRelatedArticles { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTaxonomy. | ||
/// </summary> | ||
public IEnumerable<TagReference> ArticleSchemaTaxonomy { get; set; } | ||
} | ||
} |
64 changes: 64 additions & 0 deletions
64
src/TrainingGuides.Entities/ReusableFieldSchemas/ArticleSchema/IArticleSchema.generated.cs
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,64 @@ | ||
//-------------------------------------------------------------------------------------------------- | ||
// <auto-generated> | ||
// | ||
// This code was generated by code generator tool. | ||
// | ||
// To customize the code use your own partial class. For more info about how to use and customize | ||
// the generated code see the documentation at https://docs.xperience.io/. | ||
// | ||
// </auto-generated> | ||
//-------------------------------------------------------------------------------------------------- | ||
|
||
using System; | ||
using System.Collections.Generic; | ||
using CMS.ContentEngine; | ||
|
||
namespace TrainingGuides | ||
{ | ||
/// <summary> | ||
/// Defines a contract for content types with the <see cref="IArticleSchema"/> reusable schema assigned. | ||
/// </summary> | ||
public interface IArticleSchema | ||
{ | ||
/// <summary> | ||
/// Code name of the reusable field schema. | ||
/// </summary> | ||
public const string REUSABLE_FIELD_SCHEMA_NAME = "ArticleSchema"; | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTitle. | ||
/// </summary> | ||
public string ArticleSchemaTitle { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTeaser. | ||
/// </summary> | ||
public IEnumerable<Asset> ArticleSchemaTeaser { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaSummary. | ||
/// </summary> | ||
public string ArticleSchemaSummary { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaText. | ||
/// </summary> | ||
public string ArticleSchemaText { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaRelatedArticles. | ||
/// </summary> | ||
public IEnumerable<Article> ArticleSchemaRelatedArticles { get; set; } | ||
|
||
|
||
/// <summary> | ||
/// ArticleSchemaTaxonomy. | ||
/// </summary> | ||
public IEnumerable<TagReference> ArticleSchemaTaxonomy { get; set; } | ||
} | ||
} |
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
17 changes: 17 additions & 0 deletions
17
src/TrainingGuides.Web/App_Data/CIRepository/@global/cms.contentitem/aboutfrogs-fgk2dl5o.xml
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,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<cms.contentitem> | ||
<ContentItemContentFolderID> | ||
<CodeName>Root</CodeName> | ||
<GUID>9d6509a4-a231-4837-8f1c-81a90705f988</GUID> | ||
<ObjectType>cms.contentfolder</ObjectType> | ||
</ContentItemContentFolderID> | ||
<ContentItemContentTypeID> | ||
<CodeName>TrainingGuides.NewsArticle</CodeName> | ||
<GUID>8afff782-a445-4e6b-a237-821fca0db4fb</GUID> | ||
<ObjectType>cms.contenttype</ObjectType> | ||
</ContentItemContentTypeID> | ||
<ContentItemGUID>ea6d110c-d9be-4a69-a193-4758bb0c9efa</ContentItemGUID> | ||
<ContentItemIsReusable>True</ContentItemIsReusable> | ||
<ContentItemIsSecured>False</ContentItemIsSecured> | ||
<ContentItemName>AboutFrogs-fgk2dl5o</ContentItemName> | ||
</cms.contentitem> |
17 changes: 17 additions & 0 deletions
17
src/TrainingGuides.Web/App_Data/CIRepository/@global/cms.contentitem/frog-1fdh3ccm.xml
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,17 @@ | ||
<?xml version="1.0" encoding="utf-8"?> | ||
<cms.contentitem> | ||
<ContentItemContentFolderID> | ||
<CodeName>Root</CodeName> | ||
<GUID>9d6509a4-a231-4837-8f1c-81a90705f988</GUID> | ||
<ObjectType>cms.contentfolder</ObjectType> | ||
</ContentItemContentFolderID> | ||
<ContentItemContentTypeID> | ||
<CodeName>TrainingGuides.Asset</CodeName> | ||
<GUID>9ecde825-735e-4967-a995-cc97b55adb0f</GUID> | ||
<ObjectType>cms.contenttype</ObjectType> | ||
</ContentItemContentTypeID> | ||
<ContentItemGUID>e1f1110e-93f1-4fec-94c8-571f6fbd2e26</ContentItemGUID> | ||
<ContentItemIsReusable>True</ContentItemIsReusable> | ||
<ContentItemIsSecured>False</ContentItemIsSecured> | ||
<ContentItemName>Frog-1fdh3ccm</ContentItemName> | ||
</cms.contentitem> |
Oops, something went wrong.