This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using BlazorLabs.Cms.BlazorComponents | |
@using EPiServer.Framework.Web.Mvc.Html | |
@using System.Diagnostics.Metrics | |
<!DOCTYPE html> | |
<html lang="@(Model.CurrentPage.Language)"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=10" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@page "/sitestatistics" | |
@using EPiServer.Web | |
@using MudBlazor.Charts | |
@inject IContentLoader _contentLoader | |
@inject IContentTypeRepository _contentTypeRepository | |
@inject ISiteDefinitionRepository _siteDefinitionRepository | |
<h3>Some basic site content metrics</h3> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using EPiServer.Globalization | |
@using EPiServer.Web | |
@using EPiServer.Web.Routing | |
@inject IContentLoader _contentLoader | |
@inject IContentRepository _contentRepository | |
@inject UrlResolver _urlResolver | |
@inject LanguageResolver LanguageResolver | |
<MudPaper Class="outer-paper" Width="100%" Height="100vh" Elevation="0"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@using BlazorLabs.Cms.BlazorComponents | |
@using EPiServer.Framework.Web.Mvc.Html | |
@using System.Diagnostics.Metrics | |
<!DOCTYPE html> | |
<html lang="@(Model.CurrentPage.Language)"> | |
<head> | |
<meta charset="utf-8" /> | |
<meta http-equiv="X-UA-Compatible" content="IE=10" /> | |
<meta name="viewport" content="width=device-width, initial-scale=1.0" /> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using EPiServer; | |
using EPiServer.Core; | |
using EPiServer.ServiceLocation; | |
using EPiServer.Validation; | |
using EPiServer.Web.Routing; | |
using HtmlAgilityPack; | |
using Pure.Core.Models.Media; | |
using System; | |
using System.Collections.Generic; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="c#" CodeBehind="Cleaner.aspx.cs" AutoEventWireup="False" Inherits="LatestEpi.modules.TypeContentCleaner.Cleaner" Title="" %> | |
<%@ Import Namespace="EPiServer.Web.Mvc.Html" %> | |
<asp:content contentplaceholderid="MainRegion" runat="server"> | |
<asp:HiddenField runat="server" id="SelectedScheduledJobGUID" ClientIDMode="static" /> | |
<asp:HiddenField runat="server" id="SelectedMedia" ClientIDMode="static" /> | |
<script type="text/javascript"> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using EPiServer; | |
using EPiServer.Core; | |
using EPiServer.SpecializedProperties; | |
using EPiServer.Web.Routing; | |
using System; | |
using System.Collections.Generic; | |
using System.ComponentModel.DataAnnotations; | |
using System.Linq; | |
using System.Web; | |
using System.Web.ModelBinding; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using EPiServer.Core; | |
using EPiServer.DataAbstraction; | |
using EPiServer.ServiceLocation; | |
using EPiServer.Validation; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Reflection; | |
using System.Web; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="c#" CodeBehind="Basket.aspx.cs" AutoEventWireup="False" Inherits="NergardPlayGround.modules.WasteBasket.Basket" Title="" %> | |
<%@ Import Namespace="EPiServer.Web.Mvc.Html" %> | |
<asp:content contentplaceholderid="HeaderContentRegion" runat="server"> | |
<script type="text/javascript" src="https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script> | |
<script type="text/javascript" src="//cdn.datatables.net/1.10.16/js/jquery.dataTables.min.js"></script> | |
<script type="text/javascript"> | |
$(document).ready(function () { |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<%@ Page Language="c#" CodeBehind="LogViewer.aspx.cs" AutoEventWireup="False" Inherits="LatestEpi.modules.ScheduledJobLogViewer.LogViewer" Title="Title" %> | |
<%@ Import Namespace="EPiServer.DataAbstraction" %> | |
<asp:content contentplaceholderid="MainRegion" runat="server"> | |
<script type="text/javascript"> | |
function SetSelected() { | |
$('#SelectedScheduledJobGUID').val($('#JobSelector').val()); | |
//console.log($('#JobSelector option:selected').text()); |
NewerOlder