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 | |
{ |
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="; |
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) | |
{ |
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 |
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 ); | |
} ); |