Changeset 2582753
- Timestamp:
- 08/13/2021 09:10:45 PM (5 years ago)
- Location:
- simple-iframe-buster/trunk
- Files:
-
- 3 edited
-
README.md (modified) (3 diffs)
-
plugin.php (modified) (3 diffs)
-
readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
simple-iframe-buster/trunk/README.md
r1920463 r2582753 8 8 Tags: iframe, x-frame-options 9 9 Requires at least: 3.9 10 Tested up to: 4.9.810 Tested up to: 5.7.2 11 11 Stable tag: 3.8 12 12 License: BSD(3 Clause) … … 40 40 == Changelog == 41 41 42 = 1.1.1 = 43 * Confirmed WordPress 5.7.2 compatibilty. 44 42 45 = 1.1 = 43 46 * Corrected quoting issues in js files. … … 48 51 == Arbitrary section == 49 52 50 You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely 51 complicated 52 plugins where more information needs to be conveyed that doesn't fit into the categories of "description" or 53 "installation." Arbitrary sections will be shown below the built-in sections outlined above. 53 This is my arbitrary section. There's really nothing special to add because this is truly a simple plugin with no settings or configuration. Turn it on and block the iframe content thieves. Much of this can also be achieve by working with a good hosting provider. If you are board then head over to my content site [JAFDIP](https://www.jafdip.com). 54 54 55 55 56 56 57 -
simple-iframe-buster/trunk/plugin.php
r942195 r2582753 2 2 /* 3 3 Plugin Name: Simple Iframe Buster 4 Version: 1.1 4 Version: 1.1.1 5 5 Description: Enqueues a sitewide javascript to inhibit iframes 6 6 Author: Mikel King 7 Author URI: https://www.jafdip.com 7 8 Text Domain: simple-iframe-buster 8 9 License: BSD(3 Clause) … … 11 12 12 13 /* 13 Copyright (C) 2014, Mikel King, rd.com, (mikel.king AT rdDOT com)14 Copyright (C) 2014, Mikel King, olivent.com, (mikel.king AT olivent DOT com) 14 15 All rights reserved. 15 16 … … 41 42 42 43 class Simple_Iframe_Buster { 43 const VERSION = '1.1';44 const ENABLED = true;45 const DISABLED = false;46 const IN_FOOTER = true;47 const IN_HEADER = false;48 const DEPENDS = 'jquery';49 const SCRIPT_FILE = '/js/iframe-buster.js';50 const SCRIPT_SLUG = 'iframe-buster-script';44 const VERSION = '1.1.1'; 45 const ENABLED = true; 46 const DISABLED = false; 47 const IN_FOOTER = true; 48 const IN_HEADER = false; 49 const DEPENDS = 'jquery'; 50 const SCRIPT_FILE = '/js/iframe-buster.js'; 51 const SCRIPT_SLUG = 'iframe-buster-script'; 51 52 52 53 private static $instance = array(); -
simple-iframe-buster/trunk/readme.txt
r1920463 r2582753 3 3 Tags: iframe, x-frame-options, http headers 4 4 Requires at least: 3.9 5 Tested up to: 4.9.85 Tested up to: 5.7.2 6 6 Stable tag: 3.8 7 7 License: BSD(3 Clause) … … 35 35 == Changelog == 36 36 37 = 1.1.1 = 38 * Confirmed WordPress 5.7.2 compatibilty. 39 37 40 = 1.1 = 38 41 * Corrected quoting issues in js files. … … 43 46 == Arbitrary section == 44 47 45 You may provide arbitrary sections, in the same format as the ones above. This may be of use for extremely 46 complicated 47 plugins where more information needs to be conveyed that doesn't fit into the categories of "description" or 48 "installation." Arbitrary sections will be shown below the built-in sections outlined above. 48 This is my arbitrary section. There's really nothing special to add because this is truly a simple plugin with no settings or configuration. Turn it on and block the iframe content thieves. Much of this can also be achieve by working with a good hosting provider. If you are board then head over to my content site [JAFDIP](https://www.jafdip.com). 49 49 50 50
Note: See TracChangeset
for help on using the changeset viewer.