Changeset 3150595
- Timestamp:
- 09/12/2024 08:03:36 AM (16 months ago)
- Location:
- open-rdw-kenteken-voertuiginformatie/trunk
- Files:
-
- 5 edited
-
admin/AdminDashboard.php (modified) (2 diffs)
-
config/plugin.php (modified) (1 diff)
-
plugin-gratis-open-rdw-kenteken-voertuiginformatie.php (modified) (2 diffs)
-
public/js/open-rdw-kenteken-voertuiginformatie-public.js (modified) (2 diffs)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
open-rdw-kenteken-voertuiginformatie/trunk/admin/AdminDashboard.php
r3148441 r3150595 44 44 add_action('wp_ajax_rdw_save_changes', [$this, 'rdw_save_changes']); 45 45 46 add_action(' init', [$this, 'add_tinymce_form']);46 add_action('wp_enqueue_scripts', [$this, 'add_tinymce_form']); 47 47 add_filter('mce_buttons', [$this, 'add_tinymce_button']); 48 48 add_filter('mce_external_plugins', [$this, 'register_tinymce_button']); … … 235 235 public function enqueue_styles() 236 236 { 237 wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/open-rdw-kenteken-voertuiginformatie-admin.css', []); 238 // wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/admin/open-rdw-kenteken-voertuiginformatie-admin.css', [], $this->version, 'all'); 237 wp_enqueue_style(self::$plugin_name, plugin_dir_url(__FILE__) . 'css/open-rdw-kenteken-voertuiginformatie-admin.css', [], self::$version, 'all'); 239 238 } 240 239 -
open-rdw-kenteken-voertuiginformatie/trunk/config/plugin.php
r3148441 r3150595 27 27 'log_source' => 'tussendoor-rdw', 28 28 'log_context' => 'tsdRdwContext', 29 'version' => '5.1. 1',29 'version' => '5.1.2', 30 30 'php_minimum' => '8.0', 31 31 'php_minimum_id' => 80000, -
open-rdw-kenteken-voertuiginformatie/trunk/plugin-gratis-open-rdw-kenteken-voertuiginformatie.php
r3148441 r3150595 12 12 * Author URI: https://www.tussendoor.nl 13 13 * Text Domain: tussendoor-rdw 14 * Version: 5.1. 114 * Version: 5.1.2 15 15 * Tested up to: 6.6.1 16 16 * Requires at least: 6.2 … … 28 28 define('ORK_PLUGIN_PATH', plugins_url('tussendoor-rdw')); 29 29 define('ORK_PLUGIN', __DIR__); 30 define('ORK_VERSION', '5.1. 1');30 define('ORK_VERSION', '5.1.2'); 31 31 32 32 /** -
open-rdw-kenteken-voertuiginformatie/trunk/public/js/open-rdw-kenteken-voertuiginformatie-public.js
r3145953 r3150595 62 62 formID = inputID; 63 63 } 64 console.log(formID);65 64 66 65 $('#' + formID + ' #open_rdw-loading').show(); … … 70 69 var kenteken = normalizeLicense($(this).val()); 71 70 var data = { action: 'get_open_rdw_data', kenteken: kenteken }; 72 73 console.log($(this));74 71 75 72 $(document).trigger('openrdw:before_data_load', kenteken); -
open-rdw-kenteken-voertuiginformatie/trunk/readme.txt
r3148441 r3150595 2 2 Contributors: Tussendoor 3 3 Tags: tussendoor, rdw, kenteken, voertuig, kentekeninformatie 4 Stable tag: 5.1. 14 Stable tag: 5.1.2 5 5 Tested up to: 6.6.1 6 6 Requires at least: 6.2 … … 45 45 46 46 ### Changelog 47 48 ##### 5.1.2 49 * Fixed: TinyMCE fired on init causing Headers already sent error. 47 50 48 51 ##### 5.1.1
Note: See TracChangeset
for help on using the changeset viewer.