mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-15 19:54:57 +08:00
79 lines
2.5 KiB
C#
79 lines
2.5 KiB
C#
using System;
|
|
using Orchard.Core.Common.Utilities;
|
|
using Orchard.ContentManagement;
|
|
using Orchard.ContentManagement.Aspects;
|
|
using Orchard.Security;
|
|
|
|
namespace Orchard.Core.Common.Models {
|
|
public class CommonPart : ContentPart<CommonPartRecord>, ICommonPart {
|
|
private readonly LazyField<IUser> _owner = new LazyField<IUser>();
|
|
private readonly LazyField<IContent> _container = new LazyField<IContent>();
|
|
|
|
public LazyField<IUser> OwnerField { get { return _owner; } }
|
|
|
|
public LazyField<IContent> ContainerField { get { return _container; } }
|
|
|
|
public IUser Owner {
|
|
get { return _owner.Value; }
|
|
set { _owner.Value = value; }
|
|
}
|
|
|
|
public IContent Container {
|
|
get { return _container.Value; }
|
|
set { _container.Value = value; }
|
|
}
|
|
|
|
public DateTime? CreatedUtc {
|
|
get { return Record.CreatedUtc; }
|
|
set { Record.CreatedUtc = value; }
|
|
}
|
|
|
|
public DateTime? PublishedUtc {
|
|
get { return Record.PublishedUtc; }
|
|
set { Record.PublishedUtc = value; }
|
|
}
|
|
|
|
public DateTime? ModifiedUtc {
|
|
get { return Record.ModifiedUtc; }
|
|
set { Record.ModifiedUtc = value; }
|
|
}
|
|
|
|
CommonPartVersionRecord PartVersionRecord {
|
|
get {
|
|
var versionPart = this.As<ContentPart<CommonPartVersionRecord>>();
|
|
return versionPart == null ? null : versionPart.Record;
|
|
}
|
|
}
|
|
|
|
public DateTime? VersionCreatedUtc {
|
|
get {
|
|
return PartVersionRecord == null ? CreatedUtc : PartVersionRecord.CreatedUtc;
|
|
}
|
|
set {
|
|
if (PartVersionRecord != null)
|
|
PartVersionRecord.CreatedUtc = value;
|
|
}
|
|
}
|
|
|
|
public DateTime? VersionPublishedUtc {
|
|
get {
|
|
return PartVersionRecord == null ? PublishedUtc : PartVersionRecord.PublishedUtc;
|
|
}
|
|
set {
|
|
if (PartVersionRecord != null)
|
|
PartVersionRecord.PublishedUtc = value;
|
|
}
|
|
}
|
|
|
|
public DateTime? VersionModifiedUtc {
|
|
get {
|
|
return PartVersionRecord == null ? ModifiedUtc : PartVersionRecord.ModifiedUtc;
|
|
}
|
|
set {
|
|
if (PartVersionRecord != null)
|
|
PartVersionRecord.ModifiedUtc = value;
|
|
}
|
|
}
|
|
}
|
|
}
|