Plugin Directory

Changeset 2239061


Ignore:
Timestamp:
02/05/2020 01:15:50 PM (6 years ago)
Author:
outfunnel
Message:

tagged v1.3.0

Location:
outfunnel
Files:
6 edited
2 copied

Legend:

Unmodified
Added
Removed
  • outfunnel/tags/1.2.3/main.php

    r2221072 r2239061  
    22/*
    33Plugin Name: Outfunnel
    4 Version: 1.2.0
     4Version: 1.3.0
    55Author: andrisreinman
    66Author URI: https://outfunnel.com/
     
    1818    {
    1919
    20         public $plugin_version = '1.2.0';
     20        public $plugin_version = '1.3.0';
    2121
    2222        public function __construct()
     
    3535            add_action('admin_menu', array($this, 'add_options_menu'));
    3636            add_action('wp_head', array($this, 'add_tracking_code'));
     37
     38            add_action('activated_plugin', array($this, 'activation_redirect'));
     39        }
     40
     41        public function activation_redirect($plugin)
     42        {
     43            // $plugin should be "outfunnel/main.php"
     44            if ($plugin == plugin_basename(__FILE__)) {
     45                exit(wp_redirect(admin_url('options-general.php?page=outfunnel-settings')));
     46            }
    3747        }
    3848
     
    126136            </div>
    127137            <?php
    128         }
     138}
    129139
    130140        public function add_tracking_code()
  • outfunnel/tags/1.2.3/readme.txt

    r2221072 r2239061  
    33Tags: analytics, outfunnel, outfunnel plugin
    44Requires at least: 4.2
    5 Tested up to: 5.2
    6 Stable tag: 1.2.0
     5Tested up to: 5.3.2
     6Stable tag: 1.3.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Changelog ==
    4141
     42= 1.3.0 =
     43
     44* On plugin activation redirect to settings page
     45
    4246= 1.2.0 =
    4347
  • outfunnel/tags/1.3.0/main.php

    r2221072 r2239061  
    22/*
    33Plugin Name: Outfunnel
    4 Version: 1.2.0
     4Version: 1.3.0
    55Author: andrisreinman
    66Author URI: https://outfunnel.com/
     
    1818    {
    1919
    20         public $plugin_version = '1.2.0';
     20        public $plugin_version = '1.3.0';
    2121
    2222        public function __construct()
     
    3535            add_action('admin_menu', array($this, 'add_options_menu'));
    3636            add_action('wp_head', array($this, 'add_tracking_code'));
     37
     38            add_action('activated_plugin', array($this, 'activation_redirect'));
     39        }
     40
     41        public function activation_redirect($plugin)
     42        {
     43            // $plugin should be "outfunnel/main.php"
     44            if ($plugin == plugin_basename(__FILE__)) {
     45                exit(wp_redirect(admin_url('options-general.php?page=outfunnel-settings')));
     46            }
    3747        }
    3848
     
    126136            </div>
    127137            <?php
    128         }
     138}
    129139
    130140        public function add_tracking_code()
  • outfunnel/tags/1.3.0/readme.txt

    r2221072 r2239061  
    33Tags: analytics, outfunnel, outfunnel plugin
    44Requires at least: 4.2
    5 Tested up to: 5.2
    6 Stable tag: 1.2.0
     5Tested up to: 5.3.2
     6Stable tag: 1.3.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Changelog ==
    4141
     42= 1.3.0 =
     43
     44* On plugin activation redirect to settings page
     45
    4246= 1.2.0 =
    4347
  • outfunnel/trunk/main.php

    r2221072 r2239061  
    22/*
    33Plugin Name: Outfunnel
    4 Version: 1.2.0
     4Version: 1.3.0
    55Author: andrisreinman
    66Author URI: https://outfunnel.com/
     
    1818    {
    1919
    20         public $plugin_version = '1.2.0';
     20        public $plugin_version = '1.3.0';
    2121
    2222        public function __construct()
     
    3535            add_action('admin_menu', array($this, 'add_options_menu'));
    3636            add_action('wp_head', array($this, 'add_tracking_code'));
     37
     38            add_action('activated_plugin', array($this, 'activation_redirect'));
     39        }
     40
     41        public function activation_redirect($plugin)
     42        {
     43            // $plugin should be "outfunnel/main.php"
     44            if ($plugin == plugin_basename(__FILE__)) {
     45                exit(wp_redirect(admin_url('options-general.php?page=outfunnel-settings')));
     46            }
    3747        }
    3848
     
    126136            </div>
    127137            <?php
    128         }
     138}
    129139
    130140        public function add_tracking_code()
  • outfunnel/trunk/readme.txt

    r2221072 r2239061  
    33Tags: analytics, outfunnel, outfunnel plugin
    44Requires at least: 4.2
    5 Tested up to: 5.2
    6 Stable tag: 1.2.0
     5Tested up to: 5.3.2
     6Stable tag: 1.3.0
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    4040== Changelog ==
    4141
     42= 1.3.0 =
     43
     44* On plugin activation redirect to settings page
     45
    4246= 1.2.0 =
    4347
Note: See TracChangeset for help on using the changeset viewer.