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.
36 lines
866 B
36 lines
866 B
using MediaBrowser.Controller.Entities;
|
|
|
|
namespace MediaBrowser.Controller.Collections
|
|
{
|
|
public class ManualCollectionsFolder : BasePluginFolder, IHiddenFromDisplay
|
|
{
|
|
public ManualCollectionsFolder()
|
|
{
|
|
Name = "Collections";
|
|
DisplayMediaType = "CollectionFolder";
|
|
}
|
|
|
|
public override bool IsHidden
|
|
{
|
|
get
|
|
{
|
|
return true;
|
|
}
|
|
}
|
|
|
|
public bool IsHiddenFromUser(User user)
|
|
{
|
|
return !ConfigurationManager.Configuration.DisplayCollectionsView;
|
|
}
|
|
|
|
public override string CollectionType
|
|
{
|
|
get { return Model.Entities.CollectionType.BoxSets; }
|
|
}
|
|
|
|
public override string GetClientTypeName()
|
|
{
|
|
return typeof(CollectionFolder).Name;
|
|
}
|
|
}
|
|
} |