Changeset 2884344
- Timestamp:
- 03/21/2023 02:22:40 PM (3 years ago)
- Location:
- outfunnel
- Files:
-
- 8 edited
- 1 copied
-
tags/2.7.3 (copied) (copied from outfunnel/trunk)
-
tags/2.7.3/commit.txt (modified) (1 diff)
-
tags/2.7.3/languages/outfunnel.pot (modified) (6 diffs)
-
tags/2.7.3/outfunnel.php (modified) (6 diffs)
-
tags/2.7.3/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.7.3/commit.txt
r2865739 r2884344 1 517cfac3276c406fc941797db55372efa76f3140 1 cb0f000475ab79483fca25f028b4761af61c00d1 -
outfunnel/tags/2.7.3/languages/outfunnel.pot
r2865739 r2884344 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2. 6.3\n"9 "Project-Id-Version: outfunnel 2.7.3\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-0 2-15 13:27+0000\n"11 "POT-Creation-Date: 2023-03-21 14:22+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 5320 #: outfunnel.php:104 outfunnel.php:361 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:262 41 45 msgid "Web forms integration" 42 46 msgstr "" 43 47 44 #: outfunnel.php:26 148 #: outfunnel.php:269 45 49 msgid "Account email" 46 50 msgstr "" 47 51 48 #: outfunnel.php:2 6952 #: outfunnel.php:277 49 53 msgid "API key" 50 54 msgstr "" 51 55 52 #: outfunnel.php:2 7756 #: outfunnel.php:285 53 57 msgid "Logging" 54 58 msgstr "" 55 59 56 #: outfunnel.php:3 2260 #: outfunnel.php:330 57 61 #, php-format 58 62 msgid "" … … 61 65 msgstr "" 62 66 63 #: outfunnel.php:3 8667 #: outfunnel.php:394 64 68 #, php-format 65 69 msgid "" … … 69 73 msgstr "" 70 74 71 #: outfunnel.php: 39475 #: outfunnel.php:402 72 76 msgid "Enter your Outfunnel Tracking ID for this website" 73 77 msgstr "" 74 78 75 #: outfunnel.php:4 0279 #: outfunnel.php:417 76 80 #, php-format 77 81 msgid "" … … 81 85 msgstr "" 82 86 83 #: outfunnel.php:4 1487 #: outfunnel.php:429 84 88 msgid "Enter your Outfunnel account email" 85 89 msgstr "" 86 90 87 #: outfunnel.php:4 3091 #: outfunnel.php:445 88 92 msgid "Enter your Outfunnel API key" 89 93 msgstr "" -
outfunnel/tags/2.7.3/outfunnel.php
r2865739 r2884344 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2. 6.34 Version: 2.7.3 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2. 6.3';30 public $plugin_version = '2.7.3'; 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 252 260 add_settings_section( 253 261 'outfunnel_forms_section', … … 396 404 } 397 405 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 398 413 public function outfunnel_forms_settings_section_callback() { 399 414 $config = get_option('outfunnel_settings'); … … 463 478 $outfunnel_settings = get_option('outfunnel_settings'); 464 479 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking']; 465 481 466 482 if (!empty($of_id)) { … … 470 486 <script> 471 487 window.OFID = "<?=htmlspecialchars($of_id)?>"; 488 window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>"; 472 489 window.OF_WP_VERSION = "<?=$this->plugin_version?>"; 473 490 (function(){ -
outfunnel/tags/2.7.3/readme.txt
r2865739 r2884344 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2. 6.36 Stable tag: 2.7.3 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
outfunnel/trunk/commit.txt
r2865739 r2884344 1 517cfac3276c406fc941797db55372efa76f3140 1 cb0f000475ab79483fca25f028b4761af61c00d1 -
outfunnel/trunk/languages/outfunnel.pot
r2865739 r2884344 7 7 msgid "" 8 8 msgstr "" 9 "Project-Id-Version: outfunnel 2. 6.3\n"9 "Project-Id-Version: outfunnel 2.7.3\n" 10 10 "Report-Msgid-Bugs-To: devel@outfunnel.com\n" 11 "POT-Creation-Date: 2023-0 2-15 13:27+0000\n"11 "POT-Creation-Date: 2023-03-21 14:22+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 5320 #: outfunnel.php:104 outfunnel.php:361 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:262 41 45 msgid "Web forms integration" 42 46 msgstr "" 43 47 44 #: outfunnel.php:26 148 #: outfunnel.php:269 45 49 msgid "Account email" 46 50 msgstr "" 47 51 48 #: outfunnel.php:2 6952 #: outfunnel.php:277 49 53 msgid "API key" 50 54 msgstr "" 51 55 52 #: outfunnel.php:2 7756 #: outfunnel.php:285 53 57 msgid "Logging" 54 58 msgstr "" 55 59 56 #: outfunnel.php:3 2260 #: outfunnel.php:330 57 61 #, php-format 58 62 msgid "" … … 61 65 msgstr "" 62 66 63 #: outfunnel.php:3 8667 #: outfunnel.php:394 64 68 #, php-format 65 69 msgid "" … … 69 73 msgstr "" 70 74 71 #: outfunnel.php: 39475 #: outfunnel.php:402 72 76 msgid "Enter your Outfunnel Tracking ID for this website" 73 77 msgstr "" 74 78 75 #: outfunnel.php:4 0279 #: outfunnel.php:417 76 80 #, php-format 77 81 msgid "" … … 81 85 msgstr "" 82 86 83 #: outfunnel.php:4 1487 #: outfunnel.php:429 84 88 msgid "Enter your Outfunnel account email" 85 89 msgstr "" 86 90 87 #: outfunnel.php:4 3091 #: outfunnel.php:445 88 92 msgid "Enter your Outfunnel API key" 89 93 msgstr "" -
outfunnel/trunk/outfunnel.php
r2865739 r2884344 2 2 /* 3 3 Plugin Name: Outfunnel: Web Visitor Tracking & CRM Integration 4 Version: 2. 6.34 Version: 2.7.3 5 5 Author: andrisreinman 6 6 Author URI: https://outfunnel.com/ … … 28 28 class OUTFUNNEL { 29 29 30 public $plugin_version = '2. 6.3';30 public $plugin_version = '2.7.3'; 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 252 260 add_settings_section( 253 261 'outfunnel_forms_section', … … 396 404 } 397 405 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 398 413 public function outfunnel_forms_settings_section_callback() { 399 414 $config = get_option('outfunnel_settings'); … … 463 478 $outfunnel_settings = get_option('outfunnel_settings'); 464 479 $of_id = $outfunnel_settings['of_id']; 480 $of_subdomain_tracking = $outfunnel_settings['of_subdomain_tracking']; 465 481 466 482 if (!empty($of_id)) { … … 470 486 <script> 471 487 window.OFID = "<?=htmlspecialchars($of_id)?>"; 488 window.OFCS = "<?=htmlspecialchars($of_subdomain_tracking)?>"; 472 489 window.OF_WP_VERSION = "<?=$this->plugin_version?>"; 473 490 (function(){ -
outfunnel/trunk/readme.txt
r2865739 r2884344 4 4 Requires at least: 4.2 5 5 Tested up to: 6.1.1 6 Stable tag: 2. 6.36 Stable tag: 2.7.3 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.