-
Notifications
You must be signed in to change notification settings - Fork 0
/
plugin.php
20 lines (17 loc) · 1.17 KB
/
plugin.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<?php
/*
Plugin Name: Subnet Calculator by Calculator.iO
Plugin URI: https://www.calculator.io/subnet-calculator/
Description: This IP subnet calculator makes subnetting easy, providing full subnet information like IP ranges, subnet masks and more from just basic network information.
Version: 1.0.0
Author: Calculator.io
Author URI: https://www.calculator.io/
License: GPLv2 or later
Text Domain: ci_subnet_calculator
*/
if (!function_exists('add_shortcode')) return "No direct call for Subnet Calculator by Calculator.iO";
function display_ci_subnet_calculator(){
$page = 'index.html';
return '<h2><a href="https://www.calculator.io/subnet-calculator/" target="_blank"><img src="' . esc_url(plugins_url('assets/images/icon-48.png', __FILE__ )) . '" width="48" height="48"></a> Subnet Calculator</h2><div><iframe style="background:transparent; overflow: scroll" src="' . esc_url(plugins_url($page, __FILE__ )) . '" width="100%" frameBorder="0" allowtransparency="true" onload="this.style.height = this.contentWindow.document.documentElement.scrollHeight + \'px\';" id="ci_subnet_calculator_iframe"></iframe></div>';
}
add_shortcode( 'ci_subnet_calculator', 'display_ci_subnet_calculator' );