View functions.php
This file contains 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
/** | |
* LOAD USERGUIDE ON ADMIN AREA | |
*/ | |
add_action( 'admin_enqueue_scripts', function() { | |
wp_enqueue_script( 'userguiding', get_template_directory_uri() . '/userguiding.js', false ); | |
} ); |
View main.cs
This file contains 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; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using Wox.Plugin; | |
namespace WOX.Prisjakt | |
{ | |
public class Main : IPlugin | |
{ | |
private static string prisjaktQueryUrl = "https://www.prisjakt.nu/#rparams=ss="; |
View main.cs
This file contains 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 Newtonsoft.Json; | |
using System; | |
using System.Collections.Generic; | |
using System.Diagnostics; | |
using System.Globalization; | |
using System.Net; | |
using Wox.Plugin; | |
namespace WOX.Nasa.APOD | |
{ |
View gist:78263e2ee2e92413f0f67e9a4cebd350
This file contains 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; | |
using System.IO; | |
using System.Net; | |
using System.Security.Cryptography.X509Certificates; | |
using System.Text; | |
using System.Web; | |
namespace WebShop.Helpers | |
{ | |
public class SwishAPIHelper |
View main.cs
This file contains 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; | |
using System.Collections.Generic; | |
using Wox.Plugin; | |
namespace WOX.MyPlugin | |
{ | |
public class Main : IPlugin | |
{ | |
public void Init(PluginInitContext context) | |
{ |