Plugin Directory

Changeset 2582753


Ignore:
Timestamp:
08/13/2021 09:10:45 PM (5 years ago)
Author:
vizkr
Message:

Confirmed compatibility with WordPress 5.7.2

Location:
simple-iframe-buster/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • simple-iframe-buster/trunk/README.md

    r1920463 r2582753  
    88Tags: iframe, x-frame-options
    99Requires at least: 3.9
    10 Tested up to: 4.9.8
     10Tested up to: 5.7.2
    1111Stable tag: 3.8
    1212License: BSD(3 Clause)
     
    4040== Changelog ==
    4141
     42= 1.1.1 =
     43* Confirmed WordPress 5.7.2 compatibilty.
     44
    4245= 1.1 =
    4346* Corrected quoting issues in js files.
     
    4851== Arbitrary section ==
    4952
    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.
     53This 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).
    5454
    5555
    5656
     57
  • simple-iframe-buster/trunk/plugin.php

    r942195 r2582753  
    22/*
    33Plugin Name: Simple Iframe Buster
    4 Version: 1.1
     4Version: 1.1.1
    55Description: Enqueues a sitewide javascript to inhibit iframes
    66Author: Mikel King
     7Author URI: https://www.jafdip.com
    78Text Domain: simple-iframe-buster
    89License: BSD(3 Clause)
     
    1112
    1213/*
    13     Copyright (C) 2014, Mikel King, rd.com, (mikel.king AT rd DOT com)
     14    Copyright (C) 2014, Mikel King, olivent.com, (mikel.king AT olivent DOT com)
    1415    All rights reserved.
    1516
     
    4142
    4243class 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';
    5152
    5253    private static $instance = array();
  • simple-iframe-buster/trunk/readme.txt

    r1920463 r2582753  
    33Tags: iframe, x-frame-options, http headers
    44Requires at least: 3.9
    5 Tested up to: 4.9.8
     5Tested up to: 5.7.2
    66Stable tag: 3.8
    77License: BSD(3 Clause)
     
    3535== Changelog ==
    3636
     37= 1.1.1 =
     38* Confirmed WordPress 5.7.2 compatibilty.
     39
    3740= 1.1 =
    3841* Corrected quoting issues in js files.
     
    4346== Arbitrary section ==
    4447
    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.
     48This 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).
    4949
    5050
Note: See TracChangeset for help on using the changeset viewer.