12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455 |
- using MediaBrowser.Model.Configuration;
- using MediaBrowser.Model.Entities;
- using MediaBrowser.Model.Querying;
- using System;
- using System.Collections.Generic;
- namespace MediaBrowser.Controller.Entities.Movies
- {
- /// <summary>
- /// Class BoxSet
- /// </summary>
- public class BoxSet : Folder, IHasTrailers, IHasTags, IHasPreferredMetadataLanguage
- {
- public BoxSet()
- {
- RemoteTrailers = new List<MediaUrl>();
- LocalTrailerIds = new List<Guid>();
- Tags = new List<string>();
- }
- public List<Guid> LocalTrailerIds { get; set; }
- /// <summary>
- /// Gets or sets the remote trailers.
- /// </summary>
- /// <value>The remote trailers.</value>
- public List<MediaUrl> RemoteTrailers { get; set; }
- /// <summary>
- /// Gets or sets the tags.
- /// </summary>
- /// <value>The tags.</value>
- public List<string> Tags { get; set; }
- public string PreferredMetadataLanguage { get; set; }
- /// <summary>
- /// Gets or sets the preferred metadata country code.
- /// </summary>
- /// <value>The preferred metadata country code.</value>
- public string PreferredMetadataCountryCode { get; set; }
- protected override bool GetBlockUnratedValue(UserConfiguration config)
- {
- return config.BlockUnratedMovies;
- }
- public override IEnumerable<BaseItem> GetChildren(User user, bool includeLinkedChildren)
- {
- var children = base.GetChildren(user, includeLinkedChildren);
- return LibraryManager.Sort(children, user, new[] { ItemSortBy.ProductionYear, ItemSortBy.PremiereDate, ItemSortBy.SortName }, SortOrder.Ascending);
- }
- }
- }
|