Changeset 2465863
- Timestamp:
- 01/31/2021 10:49:22 AM (5 years ago)
- Location:
- wysiwyg-editor-for-contact-form-7
- Files:
-
- 22 added
- 2 edited
-
tags/1.0.2 (added)
-
tags/1.0.2/assets (added)
-
tags/1.0.2/assets/js (added)
-
tags/1.0.2/assets/js/main.frontend.js (added)
-
tags/1.0.2/bootloader.php (added)
-
tags/1.0.2/contact-form-7-wysiwyg.php (added)
-
tags/1.0.2/includes (added)
-
tags/1.0.2/includes/activator.php (added)
-
tags/1.0.2/includes/autoloader.php (added)
-
tags/1.0.2/includes/modules (added)
-
tags/1.0.2/includes/modules/admin.php (added)
-
tags/1.0.2/includes/modules/frontend.php (added)
-
tags/1.0.2/includes/plugin.php (added)
-
tags/1.0.2/index.php (added)
-
tags/1.0.2/languages (added)
-
tags/1.0.2/languages/cf7-wysiwyg-en_US.mo (added)
-
tags/1.0.2/languages/cf7-wysiwyg-en_US.po (added)
-
tags/1.0.2/languages/cf7-wysiwyg.pot (added)
-
tags/1.0.2/readme.txt (added)
-
tags/1.0.2/templates (added)
-
tags/1.0.2/templates/generator.php (added)
-
tags/1.0.2/uninstall.php (added)
-
trunk/includes/plugin.php (modified) (3 diffs)
-
trunk/readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wysiwyg-editor-for-contact-form-7/trunk/includes/plugin.php
r2416820 r2465863 59 59 60 60 add_action('plugins_loaded', [$this, 'plugins_loaded']); 61 add_action('init', [$this, 'init']); 61 //add_action('init', [$this, 'init']); 62 63 $this->init(); 62 64 63 65 } … … 89 91 90 92 /** 91 * Initialize our plugin when WordPress is initialized.93 * Initialize our plugin 92 94 * 93 95 * @since 1.0.0 … … 133 135 134 136 // Initialize modules 135 $this->frontend = new Modules\Frontend($this ->instance());136 is_admin() && $this->admin = new Modules\Admin($this ->instance());137 $this->frontend = new Modules\Frontend($this); 138 is_admin() && $this->admin = new Modules\Admin($this); 137 139 138 140 } -
wysiwyg-editor-for-contact-form-7/trunk/readme.txt
r2417443 r2465863 4 4 Tags: rich, text, editor, wysiwyg, tinymce, contact, form, cf7 5 5 Requires at least: 5.0 6 Tested up to: 5. 56 Tested up to: 5.6 7 7 Requires PHP: 5.6 8 Stable Tag: 1.0. 28 Stable Tag: 1.0.3 9 9 License: GPLv2 or later 10 10 License URI: https://www.gnu.org/licenses/gpl-2.0.html … … 34 34 == Changelog == 35 35 36 = 1.0.3 = 37 * Fixed tinymce editor not initializing in some cases 38 36 39 = 1.0.2 = 37 40 * Fixed tinymce editor events
Note: See TracChangeset
for help on using the changeset viewer.