2020-12-15 18:27:31 +00:00
|
|
|
using System;
|
2020-12-06 23:48:54 +00:00
|
|
|
using MediaBrowser.Common.Plugins;
|
2016-10-26 06:01:42 +00:00
|
|
|
using MediaBrowser.Model.Plugins;
|
2013-03-17 16:52:32 +00:00
|
|
|
|
2020-06-20 13:59:41 +00:00
|
|
|
namespace Jellyfin.Api.Models
|
2013-03-17 16:52:32 +00:00
|
|
|
{
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// The configuration page info.
|
|
|
|
/// </summary>
|
2013-03-17 16:52:32 +00:00
|
|
|
public class ConfigurationPageInfo
|
|
|
|
{
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Initializes a new instance of the <see cref="ConfigurationPageInfo"/> class.
|
|
|
|
/// </summary>
|
|
|
|
/// <param name="plugin">Instance of <see cref="IPlugin"/> interface.</param>
|
|
|
|
/// <param name="page">Instance of <see cref="PluginPageInfo"/> interface.</param>
|
2020-12-06 23:48:54 +00:00
|
|
|
public ConfigurationPageInfo(IPlugin? plugin, PluginPageInfo page)
|
2016-10-26 06:01:42 +00:00
|
|
|
{
|
|
|
|
Name = page.Name;
|
2017-09-15 06:31:28 +00:00
|
|
|
EnableInMainMenu = page.EnableInMainMenu;
|
2018-09-12 17:26:21 +00:00
|
|
|
MenuSection = page.MenuSection;
|
|
|
|
MenuIcon = page.MenuIcon;
|
2020-12-14 23:13:29 +00:00
|
|
|
DisplayName = string.IsNullOrWhiteSpace(page.DisplayName) ? plugin?.Name : page.DisplayName;
|
2020-12-15 18:27:31 +00:00
|
|
|
PluginId = plugin?.Id;
|
2016-10-26 06:01:42 +00:00
|
|
|
}
|
2020-02-23 11:11:43 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the name.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The name.</value>
|
|
|
|
public string Name { get; set; }
|
|
|
|
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets a value indicating whether the configurations page is enabled in the main menu.
|
|
|
|
/// </summary>
|
2020-02-23 11:11:43 +00:00
|
|
|
public bool EnableInMainMenu { get; set; }
|
|
|
|
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the menu section.
|
|
|
|
/// </summary>
|
|
|
|
public string? MenuSection { get; set; }
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the menu icon.
|
|
|
|
/// </summary>
|
|
|
|
public string? MenuIcon { get; set; }
|
2020-02-23 11:11:43 +00:00
|
|
|
|
2020-06-20 13:59:41 +00:00
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the display name.
|
|
|
|
/// </summary>
|
|
|
|
public string? DisplayName { get; set; }
|
2020-02-23 11:11:43 +00:00
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
/// Gets or sets the plugin id.
|
|
|
|
/// </summary>
|
|
|
|
/// <value>The plugin id.</value>
|
2020-12-15 18:27:31 +00:00
|
|
|
public Guid? PluginId { get; set; }
|
2013-03-17 16:52:32 +00:00
|
|
|
}
|
|
|
|
}
|