Plugin Directory

Changeset 2884344


Ignore:
Timestamp:
03/21/2023 02:22:40 PM (3 years ago)
Author:
outfunnel
Message:

Tagged v2.7.3

Location:
outfunnel
Files:
8 edited
1 copied

Legend:

Unmodified
Added
Removed
  • outfunnel/tags/2.7.3/commit.txt

    r2865739 r2884344  
    1 517cfac3276c406fc941797db55372efa76f3140
     1cb0f000475ab79483fca25f028b4761af61c00d1
  • outfunnel/tags/2.7.3/languages/outfunnel.pot

    r2865739 r2884344  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: outfunnel 2.6.3\n"
     9"Project-Id-Version: outfunnel 2.7.3\n"
    1010"Report-Msgid-Bugs-To: devel@outfunnel.com\n"
    11 "POT-Creation-Date: 2023-02-15 13:27+0000\n"
     11"POT-Creation-Date: 2023-03-21 14:22+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818"Content-Transfer-Encoding: 8bit\n"
    1919
    20 #: outfunnel.php:104 outfunnel.php:353
     20#: outfunnel.php:104 outfunnel.php:361
    2121msgid "Something went wrong"
    2222msgstr ""
     
    3939
    4040#: outfunnel.php:254
     41msgid "Enable subdomain tracking"
     42msgstr ""
     43
     44#: outfunnel.php:262
    4145msgid "Web forms integration"
    4246msgstr ""
    4347
    44 #: outfunnel.php:261
     48#: outfunnel.php:269
    4549msgid "Account email"
    4650msgstr ""
    4751
    48 #: outfunnel.php:269
     52#: outfunnel.php:277
    4953msgid "API key"
    5054msgstr ""
    5155
    52 #: outfunnel.php:277
     56#: outfunnel.php:285
    5357msgid "Logging"
    5458msgstr ""
    5559
    56 #: outfunnel.php:322
     60#: outfunnel.php:330
    5761#, php-format
    5862msgid ""
     
    6165msgstr ""
    6266
    63 #: outfunnel.php:386
     67#: outfunnel.php:394
    6468#, php-format
    6569msgid ""
     
    6973msgstr ""
    7074
    71 #: outfunnel.php:394
     75#: outfunnel.php:402
    7276msgid "Enter your Outfunnel Tracking ID for this website"
    7377msgstr ""
    7478
    75 #: outfunnel.php:402
     79#: outfunnel.php:417
    7680#, php-format
    7781msgid ""
     
    8185msgstr ""
    8286
    83 #: outfunnel.php:414
     87#: outfunnel.php:429
    8488msgid "Enter your Outfunnel account email"
    8589msgstr ""
    8690
    87 #: outfunnel.php:430
     91#: outfunnel.php:445
    8892msgid "Enter your Outfunnel API key"
    8993msgstr ""
  • outfunnel/tags/2.7.3/outfunnel.php

    r2865739 r2884344  
    22/*
    33Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration
    4 Version: 2.6.3
     4Version: 2.7.3
    55Author: andrisreinman
    66Author URI: https://outfunnel.com/
     
    2828    class OUTFUNNEL {
    2929
    30         public $plugin_version = '2.6.3';
     30        public $plugin_version = '2.7.3';
    3131
    3232        /**
     
    250250            );
    251251
     252            add_settings_field(
     253                'of_subdomain_tracking',
     254                __('Enable subdomain tracking'),
     255                [$this, 'of_subdomain_tracking_field'],
     256                'outfunnelpage',
     257                'outfunnel_tracking_section'
     258            );
     259
    252260            add_settings_section(
    253261                'outfunnel_forms_section',
     
    396404        }
    397405
     406        public function of_subdomain_tracking_field() {
     407            $outfunnel_settings = get_option('outfunnel_settings');
     408            $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) && $outfunnel_settings['of_subdomain_tracking'] === "on";
     409
     410            echo '<input type="checkbox" name="outfunnel_settings[of_subdomain_tracking]"' . checked( 1, $of_subdomain_tracking, false ) . '/>';
     411        }
     412
    398413        public function outfunnel_forms_settings_section_callback() {
    399414            $config = get_option('outfunnel_settings');
     
    463478            $outfunnel_settings = get_option('outfunnel_settings');
    464479            $of_id = $outfunnel_settings['of_id'];
     480            $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking'];
    465481
    466482            if (!empty($of_id)) {
     
    470486<script>
    471487window.OFID = "<?=htmlspecialchars($of_id)?>";
     488window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>";
    472489window.OF_WP_VERSION = "<?=$this->plugin_version?>";
    473490(function(){
  • outfunnel/tags/2.7.3/readme.txt

    r2865739 r2884344  
    44Requires at least: 4.2
    55Tested up to: 6.1.1
    6 Stable tag: 2.6.3
     6Stable tag: 2.7.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • outfunnel/trunk/commit.txt

    r2865739 r2884344  
    1 517cfac3276c406fc941797db55372efa76f3140
     1cb0f000475ab79483fca25f028b4761af61c00d1
  • outfunnel/trunk/languages/outfunnel.pot

    r2865739 r2884344  
    77msgid ""
    88msgstr ""
    9 "Project-Id-Version: outfunnel 2.6.3\n"
     9"Project-Id-Version: outfunnel 2.7.3\n"
    1010"Report-Msgid-Bugs-To: devel@outfunnel.com\n"
    11 "POT-Creation-Date: 2023-02-15 13:27+0000\n"
     11"POT-Creation-Date: 2023-03-21 14:22+0000\n"
    1212"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
    1313"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
     
    1818"Content-Transfer-Encoding: 8bit\n"
    1919
    20 #: outfunnel.php:104 outfunnel.php:353
     20#: outfunnel.php:104 outfunnel.php:361
    2121msgid "Something went wrong"
    2222msgstr ""
     
    3939
    4040#: outfunnel.php:254
     41msgid "Enable subdomain tracking"
     42msgstr ""
     43
     44#: outfunnel.php:262
    4145msgid "Web forms integration"
    4246msgstr ""
    4347
    44 #: outfunnel.php:261
     48#: outfunnel.php:269
    4549msgid "Account email"
    4650msgstr ""
    4751
    48 #: outfunnel.php:269
     52#: outfunnel.php:277
    4953msgid "API key"
    5054msgstr ""
    5155
    52 #: outfunnel.php:277
     56#: outfunnel.php:285
    5357msgid "Logging"
    5458msgstr ""
    5559
    56 #: outfunnel.php:322
     60#: outfunnel.php:330
    5761#, php-format
    5862msgid ""
     
    6165msgstr ""
    6266
    63 #: outfunnel.php:386
     67#: outfunnel.php:394
    6468#, php-format
    6569msgid ""
     
    6973msgstr ""
    7074
    71 #: outfunnel.php:394
     75#: outfunnel.php:402
    7276msgid "Enter your Outfunnel Tracking ID for this website"
    7377msgstr ""
    7478
    75 #: outfunnel.php:402
     79#: outfunnel.php:417
    7680#, php-format
    7781msgid ""
     
    8185msgstr ""
    8286
    83 #: outfunnel.php:414
     87#: outfunnel.php:429
    8488msgid "Enter your Outfunnel account email"
    8589msgstr ""
    8690
    87 #: outfunnel.php:430
     91#: outfunnel.php:445
    8892msgid "Enter your Outfunnel API key"
    8993msgstr ""
  • outfunnel/trunk/outfunnel.php

    r2865739 r2884344  
    22/*
    33Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration
    4 Version: 2.6.3
     4Version: 2.7.3
    55Author: andrisreinman
    66Author URI: https://outfunnel.com/
     
    2828    class OUTFUNNEL {
    2929
    30         public $plugin_version = '2.6.3';
     30        public $plugin_version = '2.7.3';
    3131
    3232        /**
     
    250250            );
    251251
     252            add_settings_field(
     253                'of_subdomain_tracking',
     254                __('Enable subdomain tracking'),
     255                [$this, 'of_subdomain_tracking_field'],
     256                'outfunnelpage',
     257                'outfunnel_tracking_section'
     258            );
     259
    252260            add_settings_section(
    253261                'outfunnel_forms_section',
     
    396404        }
    397405
     406        public function of_subdomain_tracking_field() {
     407            $outfunnel_settings = get_option('outfunnel_settings');
     408            $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) && $outfunnel_settings['of_subdomain_tracking'] === "on";
     409
     410            echo '<input type="checkbox" name="outfunnel_settings[of_subdomain_tracking]"' . checked( 1, $of_subdomain_tracking, false ) . '/>';
     411        }
     412
    398413        public function outfunnel_forms_settings_section_callback() {
    399414            $config = get_option('outfunnel_settings');
     
    463478            $outfunnel_settings = get_option('outfunnel_settings');
    464479            $of_id = $outfunnel_settings['of_id'];
     480            $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking'];
    465481
    466482            if (!empty($of_id)) {
     
    470486<script>
    471487window.OFID = "<?=htmlspecialchars($of_id)?>";
     488window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>";
    472489window.OF_WP_VERSION = "<?=$this->plugin_version?>";
    473490(function(){
  • outfunnel/trunk/readme.txt

    r2865739 r2884344  
    44Requires at least: 4.2
    55Tested up to: 6.1.1
    6 Stable tag: 2.6.3
     6Stable tag: 2.7.3
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset for help on using the changeset viewer.