Changeset 2519865
- Timestamp:
- 04/22/2021 03:24:02 PM (5 years ago)
- Location:
- piwik-pro-tag-manager-integration
- Files:
-
- 52 added
- 3 edited
-
tags/2.2.4 (added)
-
tags/2.2.4/.htaccess (added)
-
tags/2.2.4/AUTHORS.txt (added)
-
tags/2.2.4/LICENSE.txt (added)
-
tags/2.2.4/README.txt (added)
-
tags/2.2.4/assets (added)
-
tags/2.2.4/assets/css (added)
-
tags/2.2.4/assets/css/index.html (added)
-
tags/2.2.4/assets/css/style.css (added)
-
tags/2.2.4/assets/index.html (added)
-
tags/2.2.4/assets/js (added)
-
tags/2.2.4/assets/js/index.html (added)
-
tags/2.2.4/assets/js/script.js (added)
-
tags/2.2.4/framework (added)
-
tags/2.2.4/framework/filterer.php (added)
-
tags/2.2.4/framework/index.html (added)
-
tags/2.2.4/framework/plugin.php (added)
-
tags/2.2.4/framework/singleton.php (added)
-
tags/2.2.4/includes (added)
-
tags/2.2.4/includes/body.php (added)
-
tags/2.2.4/includes/cron.php (added)
-
tags/2.2.4/includes/files.php (added)
-
tags/2.2.4/includes/functions.php (added)
-
tags/2.2.4/includes/head.php (added)
-
tags/2.2.4/includes/http.php (added)
-
tags/2.2.4/includes/index.html (added)
-
tags/2.2.4/includes/section.php (added)
-
tags/2.2.4/includes/settings.php (added)
-
tags/2.2.4/includes/tag-manager.php (added)
-
tags/2.2.4/index.html (added)
-
tags/2.2.4/languages (added)
-
tags/2.2.4/languages/index.html (added)
-
tags/2.2.4/languages/piwik-pro-tag-manager-integration-pl_PL.mo (added)
-
tags/2.2.4/languages/piwik-pro-tag-manager-integration-pl_PL.po (added)
-
tags/2.2.4/plugin.php (added)
-
tags/2.2.4/screenshot-1.png (added)
-
tags/2.2.4/screenshot-2.png (added)
-
tags/2.2.4/templates (added)
-
tags/2.2.4/templates/body.php (added)
-
tags/2.2.4/templates/code.php (added)
-
tags/2.2.4/templates/config.php (added)
-
tags/2.2.4/templates/cron.php (added)
-
tags/2.2.4/templates/head.php (added)
-
tags/2.2.4/templates/htaccess.php (added)
-
tags/2.2.4/templates/index.html (added)
-
tags/2.2.4/templates/input.php (added)
-
tags/2.2.4/templates/link.php (added)
-
tags/2.2.4/templates/menu.php (added)
-
tags/2.2.4/templates/notice.php (added)
-
tags/2.2.4/templates/page.php (added)
-
tags/2.2.4/templates/rules.php (added)
-
tags/2.2.4/templates/section.php (added)
-
trunk/README.txt (modified) (2 diffs)
-
trunk/includes/section.php (modified) (1 diff)
-
trunk/plugin.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
piwik-pro-tag-manager-integration/trunk/README.txt
r2255061 r2519865 9 9 License URI: http://www.gnu.org/licenses/gpl-3.0.txt 10 10 11 The plugin integrates WordPress site with Piwik PRO Tag Manager, allowing to add/modify website’s tags without the need to involve IT department.11 [DEPRECATED] The plugin integrates WordPress site with Piwik PRO Tag Manager, allowing to add/modify website’s tags without the need to involve IT department. 12 12 13 13 == Description == 14 15 [DEPRECATED] We'll be removing this plugin by the end of May 2021. Use the new [Piwik PRO](https://wordpress.org/plugins/piwik-pro/) plugin instead. 14 16 15 17 The WordPress Piwik PRO Tag Manager integration plugin allows you to include both the synchronous and asynchronous tags. When triggering the tags in a synchronous way, it adds the snippets of Piwik PRO Tag Manager’s code to the HTML head section. If you trigger them asynchronously, it places them directly after the opening body HTML tag. … … 111 113 == Changelog == 112 114 115 = 2.2.4 = 116 *Release date: 22.04.2021* 117 118 * Deprecated: We'll be removing this plugin by the end of May 2021. 119 113 120 = 2.2.3 = 114 121 *Release date: 05.03.2020* -
piwik-pro-tag-manager-integration/trunk/includes/section.php
r2255061 r2519865 106 106 if ( Settings::instance()->get_tab() !== $this->get_class() ) return; 107 107 108 $dir = WP_CONTENT_DIR . $this->get_dir(); 108 $link = Tag_Manager::get_template( 'link', array( 'url' => 'https://wordpress.org/plugins/piwik-pro/', 'link' => 'Piwik PRO' ) ); 109 echo Tag_Manager::get_template( 'notice', array( 'content' => sprintf( Tag_Manager::__( 'Deprecated: We\'ll be removing this plugin by the end of May 2021. Use the new %s plugin instead.' ), $link ) ) ); 110 111 $dir = WP_CONTENT_DIR . $this->get_dir(); 109 112 $code = Tag_Manager::get_template( 'code', array( 'content' => $dir ) ); 110 113 if ( ! Files::file_exists( $dir ) ) echo Tag_Manager::get_template( 'notice', array( 'content' => sprintf( Tag_Manager::__( 'Dir: %s does not exists!' ), $code ) ) ); -
piwik-pro-tag-manager-integration/trunk/plugin.php
r2255061 r2519865 5 5 Plugin URI: https://wordpress.org/plugins/piwik-pro-tag-manager-integration 6 6 Description: The plugin integrates WordPress site with Piwik PRO Tag Manager, allowing to add/modify website’s tags without the need to involve IT department. 7 Version: 2.2. 37 Version: 2.2.4 8 8 Author: piwikpro 9 9 Author URI: https://piwik.pro
Note: See TracChangeset
for help on using the changeset viewer.