Changeset 3462909
- Timestamp:
- 02/16/2026 09:37:55 PM (6 weeks ago)
- Location:
- cookietrust
- Files:
-
- 8 added
- 8 deleted
- 20 edited
- 1 copied
-
tags/1.0.1 (copied) (copied from cookietrust/trunk)
-
tags/1.0.1/assets/admin/dist/assets/main-17e1d074.js (deleted)
-
tags/1.0.1/assets/admin/dist/assets/main-776309fc.js (added)
-
tags/1.0.1/assets/admin/dist/assets/main-d878bc6c.css (added)
-
tags/1.0.1/assets/admin/dist/assets/main-dfd3aa32.css (deleted)
-
tags/1.0.1/assets/admin/dist/manifest.json (modified) (1 diff)
-
tags/1.0.1/assets/frontend/dist/assets/main-8669261d.js (deleted)
-
tags/1.0.1/assets/frontend/dist/assets/main-cf864c16.js (added)
-
tags/1.0.1/assets/frontend/dist/assets/main-d878bc6c.css (added)
-
tags/1.0.1/assets/frontend/dist/assets/main-dfd3aa32.css (deleted)
-
tags/1.0.1/assets/frontend/dist/manifest.json (modified) (1 diff)
-
tags/1.0.1/config/plugin.php (modified) (2 diffs)
-
tags/1.0.1/cookietrust.php (modified) (1 diff)
-
tags/1.0.1/includes/Core/Install.php (modified) (1 diff)
-
tags/1.0.1/includes/functions.php (modified) (2 diffs)
-
tags/1.0.1/libs/API/ApiRouteException.php (modified) (1 diff)
-
tags/1.0.1/readme.txt (modified) (2 diffs)
-
tags/1.0.1/vendor/composer/installed.php (modified) (2 diffs)
-
tags/1.0.1/views/templates/frontend-template.php (modified) (3 diffs)
-
trunk/assets/admin/dist/assets/main-17e1d074.js (deleted)
-
trunk/assets/admin/dist/assets/main-776309fc.js (added)
-
trunk/assets/admin/dist/assets/main-d878bc6c.css (added)
-
trunk/assets/admin/dist/assets/main-dfd3aa32.css (deleted)
-
trunk/assets/admin/dist/manifest.json (modified) (1 diff)
-
trunk/assets/frontend/dist/assets/main-8669261d.js (deleted)
-
trunk/assets/frontend/dist/assets/main-cf864c16.js (added)
-
trunk/assets/frontend/dist/assets/main-d878bc6c.css (added)
-
trunk/assets/frontend/dist/assets/main-dfd3aa32.css (deleted)
-
trunk/assets/frontend/dist/manifest.json (modified) (1 diff)
-
trunk/config/plugin.php (modified) (2 diffs)
-
trunk/cookietrust.php (modified) (1 diff)
-
trunk/includes/Core/Install.php (modified) (1 diff)
-
trunk/includes/functions.php (modified) (2 diffs)
-
trunk/libs/API/ApiRouteException.php (modified) (1 diff)
-
trunk/readme.txt (modified) (2 diffs)
-
trunk/vendor/composer/installed.php (modified) (2 diffs)
-
trunk/views/templates/frontend-template.php (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
cookietrust/tags/1.0.1/assets/admin/dist/manifest.json
r3462854 r3462909 1 1 { 2 2 "src/admin/main.css": { 3 "file": "assets/main-d fd3aa32.css",3 "file": "assets/main-d878bc6c.css", 4 4 "src": "src/admin/main.css" 5 5 }, 6 6 "src/admin/main.tsx": { 7 7 "css": [ 8 "assets/main-d fd3aa32.css"8 "assets/main-d878bc6c.css" 9 9 ], 10 "file": "assets/main- 17e1d074.js",10 "file": "assets/main-776309fc.js", 11 11 "isEntry": true, 12 12 "src": "src/admin/main.tsx" -
cookietrust/tags/1.0.1/assets/frontend/dist/manifest.json
r3462854 r3462909 1 1 { 2 2 "src/frontend/main.css": { 3 "file": "assets/main-d fd3aa32.css",3 "file": "assets/main-d878bc6c.css", 4 4 "src": "src/frontend/main.css" 5 5 }, 6 6 "src/frontend/main.jsx": { 7 7 "css": [ 8 "assets/main-d fd3aa32.css"8 "assets/main-d878bc6c.css" 9 9 ], 10 "file": "assets/main- 8669261d.js",10 "file": "assets/main-cf864c16.js", 11 11 "isEntry": true, 12 12 "src": "src/frontend/main.jsx" -
cookietrust/tags/1.0.1/config/plugin.php
r3462854 r3462909 3 3 * Config file for the plugin. 4 4 * 5 * @package WordPress Plugin Boilerplate5 * @package CookieTrust 6 6 * @since 1.0.0 7 7 */ … … 19 19 */ 20 20 21 'plugin_name' => ' WordPress Plugin Boilerplate',21 'plugin_name' => 'CookieTrust', 22 22 ); -
cookietrust/tags/1.0.1/cookietrust.php
r3462854 r3462909 5 5 * Description: Cookie consent management powered by CookieTrust.io - GDPR & CCPA compliant cookie banner. 6 6 * Author: CookieTrust 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Requires at least: 5.8 9 9 * Tested up to: 6.9 -
cookietrust/tags/1.0.1/includes/Core/Install.php
r3462856 r3462909 39 39 */ 40 40 private function install_pages() { 41 wordpress_plugin_boilerplate_install_page(41 cookietrust_install_page( 42 42 Template::FRONTEND_TEMPLATE_NAME, 43 43 Template::FRONTEND_TEMPLATE_SLUG, -
cookietrust/tags/1.0.1/includes/functions.php
r3462854 r3462909 54 54 * @return void 55 55 */ 56 function wordpress_plugin_boilerplate_install_page( $page_title, $page_name, $page_template_file_name ) {56 function cookietrust_install_page( $page_title, $page_name, $page_template_file_name ) { 57 57 // Check if a page with the specified name does not exist. 58 58 if ( ! get_page_by_path( $page_name ) ) { … … 79 79 * @since 1.0.0 80 80 */ 81 function wordpress_plugin_boilerplate_get_config( string $config_file_name ): array {81 function cookietrust_get_config( string $config_file_name ): array { 82 82 $config_file_path = __DIR__ . '/../config/' . $config_file_name . '.php'; 83 83 if ( file_exists( $config_file_path ) ) { -
cookietrust/tags/1.0.1/libs/API/ApiRouteException.php
r3462856 r3462909 3 3 * API route exception. 4 4 * 5 * @package WordpressPluginBoilerplate5 * @package CookieTrust 6 6 * @since 1.0.0 7 7 */ -
cookietrust/tags/1.0.1/readme.txt
r3462854 r3462909 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 == Changelog == 82 82 83 = 1.0.1 = 84 * Fix: Resolve fatal error on activation when installed from WordPress.org (missing vendor file) 85 83 86 = 1.0.0 = 84 87 * Initial release -
cookietrust/tags/1.0.1/vendor/composer/installed.php
r3462856 r3462909 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 004ddd72b41af1c2326b76eb20bb9002f3812b08',6 'reference' => 'c782aa9a1fe687892bd3089270af242b77288d54', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 004ddd72b41af1c2326b76eb20bb9002f3812b08',16 'reference' => 'c782aa9a1fe687892bd3089270af242b77288d54', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
cookietrust/tags/1.0.1/views/templates/frontend-template.php
r3462854 r3462909 5 5 * This file is used to markup the public facing aspects of the plugin. 6 6 * 7 * @package WordPressPluginBoilerplate7 * @package CookieTrust 8 8 */ 9 9 10 10 defined( 'ABSPATH' ) || exit; 11 11 12 use WordPressPluginBoilerplate\Assets\Frontend;12 use CookieTrust\Assets\Frontend; 13 13 14 14 … … 20 20 * @since 1.0.0 21 21 */ 22 function wordpress_plugin_boilerplate_remove_unwanted_scripts_and_styles() {22 function cookietrust_remove_unwanted_scripts_and_styles() { 23 23 global $wp_scripts, $wp_styles; 24 24 … … 47 47 <?php 48 48 // Template specific deregistration of scripts and styles. 49 add_action( 'wp_enqueue_scripts', ' wordpress_plugin_boilerplate_remove_unwanted_scripts_and_styles', 100 );49 add_action( 'wp_enqueue_scripts', 'cookietrust_remove_unwanted_scripts_and_styles', 100 ); 50 50 51 51 wp_head(); 52 52 53 53 ?> 54 <div id=" myplugin-frontend" class="myplugin-app"></div>54 <div id="cookietrust-frontend" class="cookietrust-app"></div> 55 55 <?php 56 56 -
cookietrust/trunk/assets/admin/dist/manifest.json
r3462854 r3462909 1 1 { 2 2 "src/admin/main.css": { 3 "file": "assets/main-d fd3aa32.css",3 "file": "assets/main-d878bc6c.css", 4 4 "src": "src/admin/main.css" 5 5 }, 6 6 "src/admin/main.tsx": { 7 7 "css": [ 8 "assets/main-d fd3aa32.css"8 "assets/main-d878bc6c.css" 9 9 ], 10 "file": "assets/main- 17e1d074.js",10 "file": "assets/main-776309fc.js", 11 11 "isEntry": true, 12 12 "src": "src/admin/main.tsx" -
cookietrust/trunk/assets/frontend/dist/manifest.json
r3462854 r3462909 1 1 { 2 2 "src/frontend/main.css": { 3 "file": "assets/main-d fd3aa32.css",3 "file": "assets/main-d878bc6c.css", 4 4 "src": "src/frontend/main.css" 5 5 }, 6 6 "src/frontend/main.jsx": { 7 7 "css": [ 8 "assets/main-d fd3aa32.css"8 "assets/main-d878bc6c.css" 9 9 ], 10 "file": "assets/main- 8669261d.js",10 "file": "assets/main-cf864c16.js", 11 11 "isEntry": true, 12 12 "src": "src/frontend/main.jsx" -
cookietrust/trunk/config/plugin.php
r3462854 r3462909 3 3 * Config file for the plugin. 4 4 * 5 * @package WordPress Plugin Boilerplate5 * @package CookieTrust 6 6 * @since 1.0.0 7 7 */ … … 19 19 */ 20 20 21 'plugin_name' => ' WordPress Plugin Boilerplate',21 'plugin_name' => 'CookieTrust', 22 22 ); -
cookietrust/trunk/cookietrust.php
r3462854 r3462909 5 5 * Description: Cookie consent management powered by CookieTrust.io - GDPR & CCPA compliant cookie banner. 6 6 * Author: CookieTrust 7 * Version: 1.0. 07 * Version: 1.0.1 8 8 * Requires at least: 5.8 9 9 * Tested up to: 6.9 -
cookietrust/trunk/includes/Core/Install.php
r3462856 r3462909 39 39 */ 40 40 private function install_pages() { 41 wordpress_plugin_boilerplate_install_page(41 cookietrust_install_page( 42 42 Template::FRONTEND_TEMPLATE_NAME, 43 43 Template::FRONTEND_TEMPLATE_SLUG, -
cookietrust/trunk/includes/functions.php
r3462854 r3462909 54 54 * @return void 55 55 */ 56 function wordpress_plugin_boilerplate_install_page( $page_title, $page_name, $page_template_file_name ) {56 function cookietrust_install_page( $page_title, $page_name, $page_template_file_name ) { 57 57 // Check if a page with the specified name does not exist. 58 58 if ( ! get_page_by_path( $page_name ) ) { … … 79 79 * @since 1.0.0 80 80 */ 81 function wordpress_plugin_boilerplate_get_config( string $config_file_name ): array {81 function cookietrust_get_config( string $config_file_name ): array { 82 82 $config_file_path = __DIR__ . '/../config/' . $config_file_name . '.php'; 83 83 if ( file_exists( $config_file_path ) ) { -
cookietrust/trunk/libs/API/ApiRouteException.php
r3462856 r3462909 3 3 * API route exception. 4 4 * 5 * @package WordpressPluginBoilerplate5 * @package CookieTrust 6 6 * @since 1.0.0 7 7 */ -
cookietrust/trunk/readme.txt
r3462854 r3462909 4 4 Requires at least: 5.8 5 5 Tested up to: 6.9 6 Stable tag: 1.0. 06 Stable tag: 1.0.1 7 7 Requires PHP: 7.4 8 8 License: GPLv2 or later … … 81 81 == Changelog == 82 82 83 = 1.0.1 = 84 * Fix: Resolve fatal error on activation when installed from WordPress.org (missing vendor file) 85 83 86 = 1.0.0 = 84 87 * Initial release -
cookietrust/trunk/vendor/composer/installed.php
r3462856 r3462909 4 4 'pretty_version' => 'dev-main', 5 5 'version' => 'dev-main', 6 'reference' => ' 004ddd72b41af1c2326b76eb20bb9002f3812b08',6 'reference' => 'c782aa9a1fe687892bd3089270af242b77288d54', 7 7 'type' => 'library', 8 8 'install_path' => __DIR__ . '/../../', … … 14 14 'pretty_version' => 'dev-main', 15 15 'version' => 'dev-main', 16 'reference' => ' 004ddd72b41af1c2326b76eb20bb9002f3812b08',16 'reference' => 'c782aa9a1fe687892bd3089270af242b77288d54', 17 17 'type' => 'library', 18 18 'install_path' => __DIR__ . '/../../', -
cookietrust/trunk/views/templates/frontend-template.php
r3462854 r3462909 5 5 * This file is used to markup the public facing aspects of the plugin. 6 6 * 7 * @package WordPressPluginBoilerplate7 * @package CookieTrust 8 8 */ 9 9 10 10 defined( 'ABSPATH' ) || exit; 11 11 12 use WordPressPluginBoilerplate\Assets\Frontend;12 use CookieTrust\Assets\Frontend; 13 13 14 14 … … 20 20 * @since 1.0.0 21 21 */ 22 function wordpress_plugin_boilerplate_remove_unwanted_scripts_and_styles() {22 function cookietrust_remove_unwanted_scripts_and_styles() { 23 23 global $wp_scripts, $wp_styles; 24 24 … … 47 47 <?php 48 48 // Template specific deregistration of scripts and styles. 49 add_action( 'wp_enqueue_scripts', ' wordpress_plugin_boilerplate_remove_unwanted_scripts_and_styles', 100 );49 add_action( 'wp_enqueue_scripts', 'cookietrust_remove_unwanted_scripts_and_styles', 100 ); 50 50 51 51 wp_head(); 52 52 53 53 ?> 54 <div id=" myplugin-frontend" class="myplugin-app"></div>54 <div id="cookietrust-frontend" class="cookietrust-app"></div> 55 55 <?php 56 56
Note: See TracChangeset
for help on using the changeset viewer.