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.
31 lines
676 B
31 lines
676 B
using System.Linq;
|
|
using MediaBrowser.Controller.Entities;
|
|
|
|
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;
|
|
}
|
|
}
|
|
}
|
|
} |