helpcenter/Web/Controls/Help/Administration/PortalManagement.ascx

67 lines
4.1 KiB
Plaintext

<%@ Control Language="C#" Inherits="BaseContentUserControls" %>
<%@ Register Namespace="TeamLab.Controls" Assembly="__Code" TagPrefix="cc" %>
<script runat="server">
string CurCulture2ISOName = System.Threading.Thread.CurrentThread.CurrentCulture.TwoLetterISOLanguageName;
string LocalizedPageTitle = "",
LocalizedMetaDescription = "",
LocalizedMetaKeyWords = "";
protected override void Init()
{
switch (CurCulture2ISOName)
{
case "en":
default:
LocalizedPageTitle = "Administration Guides - Managing portals";
LocalizedMetaDescription = "ONLYOFFICE Administration Guides. Managing portals.";
break;
case "de":
LocalizedPageTitle = "Anleitungen für Administratoren - Portale verwalten";
LocalizedMetaDescription = "ONLYOFFICE Anleitungen für Administratoren. Portale verwalten.";
break;
case "ru":
LocalizedPageTitle = "Руководства по администрированию - Управление порталами";
LocalizedMetaDescription = "ONLYOFFICE Руководства по администрированию. Управление порталами.";
break;
}
PageTitle = PageCaption = LocalizedPageTitle;
MetaKeyWords = LocalizedMetaKeyWords;
MetaDescription = LocalizedMetaDescription;
}
</script>
<div id="toggleMenuEditors" class="MainHelpCenter PageGuides installation_guides">
<h1><asp:Literal runat="server" Text="<%$ Resources:Resource, AdministrationGuides %>" /></h1>
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, OOWorkspace %>" /></h2>
<%--<div class="watchvideo_block">
<h2><asp:Literal runat="server" Text="<%$ Resources:Resource, WatchVideo %>" /></h2>
<div class="slider autoplay with_arrows">
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0031_enterprise_script.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0035_ldap_settings.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0061_enterprise_aws.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0050_digitalocean_oneclick.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0030_install_docker.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0028_install_communitys_ubuntu.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0027_install_community_windows.ascx" />
<cc:LocalizeContent runat="Server" ControlName="~/Controls/Help/Video/AllVideoControls/0029_connect_document_windows.ascx" />
</div>
</div>--%>
<ul class="block-editor">
<li>
<h2 class="doceditor"><asp:Literal runat="server" Text="<%$ Resources:Resource, ManagingPortals %>" /></h2>
<div class="described">
<p><asp:Literal runat="server" Text="<%$ Resources:Resource, PortalMngmDescribed %>" /></p>
</div>
<ul>
<li><a href="<%=VirtualPathUtility.ToAbsolute("~/administration/configuration.aspx#ViewingPortalStatistics_block")%>"><asp:Literal runat="server" Text="<%$ Resources:Resource, ViewingPortalStatistics %>" /></a></li>
<li><a href="<%=VirtualPathUtility.ToAbsolute("~/administration/configuration.aspx#ChangingPortalRegion_block")%>"><asp:Literal runat="server" Text="<%$ Resources:Resource, ChangingPortalRegion %>" /></a></li>
<li><a href="<%=VirtualPathUtility.ToAbsolute("~/administration/configuration.aspx#DeactivatingDeletingPortal_block")%>"><asp:Literal runat="server" Text="<%$ Resources:Resource, DeactivatingDeletingPortal %>" /></a></li>
</ul>
</li>
</ul>
</div>