mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
41 lines
No EOL
932 B
C#
41 lines
No EOL
932 B
C#
using MediaBrowser.Controller.Entities;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Collections
|
|
{
|
|
public class ManualCollectionsFolder : BasePluginFolder
|
|
{
|
|
public ManualCollectionsFolder()
|
|
{
|
|
Name = "Collections";
|
|
}
|
|
|
|
public override bool IsVisible(User user)
|
|
{
|
|
if (!GetChildren(user, true).Any())
|
|
{
|
|
return false;
|
|
}
|
|
|
|
return base.IsVisible(user);
|
|
}
|
|
|
|
public override bool IsHidden
|
|
{
|
|
get
|
|
{
|
|
return !ActualChildren.Any() || base.IsHidden;
|
|
}
|
|
}
|
|
|
|
public override string CollectionType
|
|
{
|
|
get { return Model.Entities.CollectionType.BoxSets; }
|
|
}
|
|
|
|
public override string GetClientTypeName()
|
|
{
|
|
return typeof (CollectionFolder).Name;
|
|
}
|
|
}
|
|
} |