Changeset 2886404
- Timestamp:
- 03/24/2023 12:45:22 PM (3 years ago)
- Location:
- outfunnel
- Files:
-
- 8 edited
- 1 copied
-
tags/2.8.4 (copied) (copied from outfunnel/trunk)
-
tags/2.8.4/commit.txt (modified) (1 diff)
-
tags/2.8.4/languages/outfunnel.pot (modified) (6 diffs)
-
tags/2.8.4/outfunnel.php (modified) (6 diffs)
-
tags/2.8.4/readme.txt (modified) (1 diff)
-
trunk/commit.txt (modified) (1 diff)
-
trunk/languages/outfunnel.pot (modified) (6 diffs)
-
trunk/outfunnel.php (modified) (6 diffs)
-
trunk/readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
outfunnel/tags/2.8.4/commit.txt
r2885570 r2886404 1 ae8f59ed2a69449d40ee80c1d0b7279d2e23ed42 1 ced22f31f69524a3511193ff262dd544282f5cae -
outfunnel/tags/2.8.4/languages/outfunnel.pot
r2885570 r2886404 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2. 7.4\n"9 "Project-Id-Version: outfunnel 2.8.4\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-03-2 3 10:55+0000\n"11 "POT-Creation-Date: 2023-03-24 12:45+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 20 #: outfunnel.php:104 outfunnel.php:3 6120 #: outfunnel.php:104 outfunnel.php:353 21 21 msgid "Something went wrong" 22 22 msgstr "" … … 39 39 40 40 #: outfunnel.php:254 41 msgid "Enable subdomain tracking"42 msgstr ""43 44 #: outfunnel.php:26245 41 msgid "Web forms integration" 46 42 msgstr "" 47 43 48 #: outfunnel.php:26 944 #: outfunnel.php:261 49 45 msgid "Account email" 50 46 msgstr "" 51 47 52 #: outfunnel.php:2 7748 #: outfunnel.php:269 53 49 msgid "API key" 54 50 msgstr "" 55 51 56 #: outfunnel.php:2 8552 #: outfunnel.php:277 57 53 msgid "Logging" 58 54 msgstr "" 59 55 60 #: outfunnel.php:3 3056 #: outfunnel.php:322 61 57 #, php-format 62 58 msgid "" … … 65 61 msgstr "" 66 62 67 #: outfunnel.php:3 9463 #: outfunnel.php:386 68 64 #, php-format 69 65 msgid "" … … 73 69 msgstr "" 74 70 75 #: outfunnel.php: 40271 #: outfunnel.php:394 76 72 msgid "Enter your Outfunnel Tracking ID for this website" 77 73 msgstr "" 78 74 79 #: outfunnel.php:4 1775 #: outfunnel.php:402 80 76 #, php-format 81 77 msgid "" … … 85 81 msgstr "" 86 82 87 #: outfunnel.php:4 2983 #: outfunnel.php:414 88 84 msgid "Enter your Outfunnel account email" 89 85 msgstr "" 90 86 91 #: outfunnel.php:4 4587 #: outfunnel.php:430 92 88 msgid "Enter your Outfunnel API key" 93 89 msgstr "" -
outfunnel/tags/2.8.4/outfunnel.php
r2885570 r2886404 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2. 7.44 Version: 2.8.4 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2. 7.4';30 public $plugin_version = '2.8.4'; 31 31 32 32 /** … … 250 250 ); 251 251 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 260 252 add_settings_section( 261 253 'outfunnel_forms_section', … … 404 396 } 405 397 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 413 398 public function outfunnel_forms_settings_section_callback() { 414 399 $config = get_option('outfunnel_settings'); … … 478 463 $outfunnel_settings = get_option('outfunnel_settings'); 479 464 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) ? $outfunnel_settings['of_subdomain_tracking'] : null;481 465 482 466 if (!empty($of_id)) { … … 486 470 <script> 487 471 window.OFID = "<?=htmlspecialchars($of_id)?>"; 488 window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>";489 472 window.OF_WP_VERSION = "<?=$this->plugin_version?>"; 490 473 (function(){ -
outfunnel/tags/2.8.4/readme.txt
r2885570 r2886404 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2. 7.46 Stable tag: 2.8.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
outfunnel/trunk/commit.txt
r2885570 r2886404 1 ae8f59ed2a69449d40ee80c1d0b7279d2e23ed42 1 ced22f31f69524a3511193ff262dd544282f5cae -
outfunnel/trunk/languages/outfunnel.pot
r2885570 r2886404 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2. 7.4\n"9 "Project-Id-Version: outfunnel 2.8.4\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-03-2 3 10:55+0000\n"11 "POT-Creation-Date: 2023-03-24 12:45+0000\n" 12 12 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" 13 13 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" … … 18 18 "Content-Transfer-Encoding: 8bit\n" 19 19 20 #: outfunnel.php:104 outfunnel.php:3 6120 #: outfunnel.php:104 outfunnel.php:353 21 21 msgid "Something went wrong" 22 22 msgstr "" … … 39 39 40 40 #: outfunnel.php:254 41 msgid "Enable subdomain tracking"42 msgstr ""43 44 #: outfunnel.php:26245 41 msgid "Web forms integration" 46 42 msgstr "" 47 43 48 #: outfunnel.php:26 944 #: outfunnel.php:261 49 45 msgid "Account email" 50 46 msgstr "" 51 47 52 #: outfunnel.php:2 7748 #: outfunnel.php:269 53 49 msgid "API key" 54 50 msgstr "" 55 51 56 #: outfunnel.php:2 8552 #: outfunnel.php:277 57 53 msgid "Logging" 58 54 msgstr "" 59 55 60 #: outfunnel.php:3 3056 #: outfunnel.php:322 61 57 #, php-format 62 58 msgid "" … … 65 61 msgstr "" 66 62 67 #: outfunnel.php:3 9463 #: outfunnel.php:386 68 64 #, php-format 69 65 msgid "" … … 73 69 msgstr "" 74 70 75 #: outfunnel.php: 40271 #: outfunnel.php:394 76 72 msgid "Enter your Outfunnel Tracking ID for this website" 77 73 msgstr "" 78 74 79 #: outfunnel.php:4 1775 #: outfunnel.php:402 80 76 #, php-format 81 77 msgid "" … … 85 81 msgstr "" 86 82 87 #: outfunnel.php:4 2983 #: outfunnel.php:414 88 84 msgid "Enter your Outfunnel account email" 89 85 msgstr "" 90 86 91 #: outfunnel.php:4 4587 #: outfunnel.php:430 92 88 msgid "Enter your Outfunnel API key" 93 89 msgstr "" -
outfunnel/trunk/outfunnel.php
r2885570 r2886404 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2. 7.44 Version: 2.8.4 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2. 7.4';30 public $plugin_version = '2.8.4'; 31 31 32 32 /** … … 250 250 ); 251 251 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 260 252 add_settings_section( 261 253 'outfunnel_forms_section', … … 404 396 } 405 397 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 413 398 public function outfunnel_forms_settings_section_callback() { 414 399 $config = get_option('outfunnel_settings'); … … 478 463 $outfunnel_settings = get_option('outfunnel_settings'); 479 464 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = isset($outfunnel_settings['of_subdomain_tracking']) ? $outfunnel_settings['of_subdomain_tracking'] : null;481 465 482 466 if (!empty($of_id)) { … … 486 470 <script> 487 471 window.OFID = "<?=htmlspecialchars($of_id)?>"; 488 window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>";489 472 window.OF_WP_VERSION = "<?=$this->plugin_version?>"; 490 473 (function(){ -
outfunnel/trunk/readme.txt
r2885570 r2886404 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2. 7.46 Stable tag: 2.8.4 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html
Note: See TracChangeset
for help on using the changeset viewer.