You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
43 lines
1.0 KiB
43 lines
1.0 KiB
using MediaBrowser.Controller.Entities;
|
|
using System.Linq;
|
|
|
|
namespace MediaBrowser.Server.Implementations.Collections
|
|
{
|
|
public class ManualCollectionsFolder : BasePluginFolder
|
|
{
|
|
public ManualCollectionsFolder()
|
|
{
|
|
Name = "Collections";
|
|
DisplayMediaType = "CollectionFolder";
|
|
}
|
|
|
|
public override bool IsVisible(User user)
|
|
{
|
|
return GetChildren(user, true).Any() &&
|
|
base.IsVisible(user);
|
|
}
|
|
|
|
public override bool IsHidden
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public override bool IsHiddenFromUser(User user)
|
|
{
|
|
return !user.Configuration.DisplayCollectionsView;
|
|
}
|
|
|
|
public override string CollectionType
|
|
{
|
|
get { return Model.Entities.CollectionType.BoxSets; }
|
|
}
|
|
|
|
public override string GetClientTypeName()
|
|
{
|
|
return typeof (CollectionFolder).Name;
|
|
}
|
|
}
|
|
} |