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
function epiGat(settings) { | |
if (settings.downloads || settings.external || settings.mailto) { | |
var isinternal = new RegExp('^' + window.location.protocol + '\/\/' + window.location.host, 'i'); | |
function addEvent(obj, type, fn) { | |
if (obj.addEventListener) | |
obj.addEventListener(type, fn, false); | |
else if (obj.attachEvent) { | |
obj['e' + type + fn] = fn; | |
obj[type + fn] = function () { obj['e' + type + fn](window.event); } |
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
<?xml version="1.0"?> | |
<package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd"> | |
<metadata> | |
<id>FotoWare.PlugIns.Episerver</id> | |
<version>$version$</version> | |
<title>Episerver Addon integrates Fotoware DAM with Episerver CMS and Commerce</title> | |
<authors>FotoWare</authors> | |
<owners>FotoWare</owners> | |
<iconUrl>https://www.fotoware.com/hubfs/FotoWare_January2018/image/favicon.ico</iconUrl> | |
<projectUrl>https://learn.fotoware.com/02_FotoWeb_8.0/Integrating_FotoWeb_with_third-party_systems/Episerver_plugin_documentation</projectUrl> |
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.Security; | |
using EPiServer.Web.Routing; | |
using Gosso.Mvc.Business.Initialization; | |
using System; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
using System.Web.Mvc; |
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.PlugIn; | |
using EPiServer.Security; | |
using EPiServer.ServiceLocation; | |
using EPiServer.Web; | |
using EPiServer.Web.Routing; | |
using Gosso.Mvc.Business.Initialization; | |
using Gosso.Mvc.Helpers; | |
using log4net; |
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.Shell.ObjectEditing.EditorDescriptors; | |
using System; | |
using System.Collections; | |
using System.Collections.Generic; | |
using System.Linq; | |
using System.Web; | |
namespace Gosso.Episerver.Business.EditorDescriptors | |
{ |
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
"use strict"; | |
var tinymce = tinymce || {}; | |
//Register the plugin | |
tinymce.PluginManager.add('customimagebuttonplugin', function (editor, url) { | |
//your custom logic when button clicked | |
editor.addCommand('tinymcecustombutton', function () { | |
var isUpdate = false; | |
//default values |
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 Gosso.Web.Business.Services; | |
using EPiServer.DataAbstraction; | |
using EPiServer.PlugIn; | |
using EPiServer.Scheduler; | |
using EPiServer.ServiceLocation; | |
//Episerver Schedual job to update the cache with fresh data from Google Analytics | |
namespace Gosso.Web.Business.Jobs | |
{ | |
[ScheduledPlugIn(DisplayName = "Get Statistics from Analytics (api v4)", |
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.Framework.Cache; | |
using EPiServer.ServiceLocation; | |
using Google.Apis.Analytics.v3; | |
using Google.Apis.Analytics.v3.Data; | |
using Google.Apis.Auth.OAuth2; | |
using Google.Apis.Services; | |
using System; | |
using System.Collections.Generic; | |
using System.Configuration; |
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 System.Collections.Generic; | |
using System.Linq; | |
using System.Text; | |
using System.Web.Mvc; | |
using System.Web.Profile; | |
using EPiServer.Personalization; | |
using EPiServer.Shell.ViewComposition; | |
namespace Gosso.Episerver.Plugins.Gadget | |
{ |
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.Forms.Core.Internal; | |
using EPiServer.Forms.Core.Models; | |
using EPiServer.ServiceLocation; | |
using Gosso.EpiserverSite.Mvc.Models.Pages; | |
using System.Collections.Generic; | |
using System.Web; | |
namespace Gosso.EpiserverSite.Mvc.Business.Forms |