Plugin Directory

Changeset 2849835


Ignore:
Timestamp:
01/17/2023 02:34:24 PM (3 years ago)
Author:
nusert
Message:

update

Location:
internal-link-flow-topical-authority-topical-map/trunk
Files:
200 added
2 edited

Legend:

Unmodified
Added
Removed
  • internal-link-flow-topical-authority-topical-map/trunk/README.txt

    r2848847 r2849835  
    55Requires at least: 4.7
    66Tested up to: 6.1
    7 Stable tag: 1.0.0
     7Stable tag: 1.0.1
    88Requires PHP: 7.0
    99License: GPLv2 or later
     
    9797* Another change.
    9898
     99= 1.0.1 =
     100* Add Freemius.
     101
     102
    99103== Upgrade Notice ==
    100104= 1.0.0 =
  • internal-link-flow-topical-authority-topical-map/trunk/internal-link-flow.php

    r2848847 r2849835  
    1515 * Plugin URI:        https://nurullah.org/internal-link-flow
    1616 * Description:       Visualize and track the internal linking structure of your page using a flow chart. Topical Map and Topical Authority
    17  * Version:           1.0.0
     17 * Version:           1.0.1
    1818 * Author:            Nurullah SERT
    1919 * Author URI:        https://nurullah.org
     
    4141define('TAILF_PATH', plugin_dir_path(__FILE__));
    4242define('TAILF_URL', plugin_dir_url(__FILE__));
    43 define('TAILF_VERSION', '1.0.0');
    44 define('TAILF_VERSION_INT', '100');
     43define('TAILF_VERSION', '1.0.1');
     44define('TAILF_VERSION_INT', '101');
     45
     46
     47if ( ! function_exists( 'ilftatm_fs' ) ) {
     48    // Create a helper function for easy SDK access.
     49    function ilftatm_fs() {
     50        global $ilftatm_fs;
     51
     52        if ( ! isset( $ilftatm_fs ) ) {
     53            // Include Freemius SDK.
     54            require_once dirname(__FILE__) . '/freemius/start.php';
     55
     56            $ilftatm_fs = fs_dynamic_init( array(
     57                'id'                  => '11812',
     58                'slug'                => 'internal-link-flow--topical-authority--topical-map',
     59                'type'                => 'plugin',
     60                'public_key'          => 'pk_4828d3fa93b556dc42ae6c01ddff6',
     61                'is_premium'          => false,
     62                'has_addons'          => false,
     63                'has_paid_plans'      => false,
     64                'menu'                => array(
     65                    'first-path'     => 'admin.php?page=internal-link-flow',
     66                    'account'        => false,
     67                    'support'        => false,
     68                ),
     69            ) );
     70        }
     71
     72        return $ilftatm_fs;
     73    }
     74
     75    // Init Freemius.
     76    ilftatm_fs();
     77    // Signal that SDK was initiated.
     78    do_action( 'ilftatm_fs_loaded' );
     79}
    4580
    4681/**
Note: See TracChangeset for help on using the changeset viewer.