Enhanced Text Widget - Version 1.4.9

Version Description

  • Rollback
Download this release

Release Info

Developer upwsupport
Plugin Icon wp plugin Enhanced Text Widget
Version 1.4.9
Comparing to
See all releases

Code changes from version 1.4.7 to 1.4.9

Files changed (3) hide show
  1. README.md +120 -0
  2. enhanced-text-widget.php +5 -10
  3. readme.txt +13 -4
README.md ADDED
@@ -0,0 +1,120 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ === Enhanced Text Widget ===
2
+ Contributors: cl272
3
+ Donate link: https://sellcodes.com/5U4SICyc
4
+ Tags: widget, clickable, linkable, linked title, text, php, javascript, flash, linked title text, linked, text widget, php widget, link widget title, bare widget, widget shortcodes, enhanced text, better text widget, simple, html widget, css
5
+ Requires at least: 3.6
6
+ Tested up to: 5.4
7
+ Stable tag: 1.4.8
8
+ License: MIT
9
+ License URI: http://opensource.org/licenses/MIT
10
+
11
+ An enhanced version of the text widget that supports Text, HTML, CSS, JavaScript, Flash, Shortcodes and PHP with linkable widget title.
12
+
13
+ == Description ==
14
+
15
+ UPDATE: Plugin ownership changed for this plugin. We are currently evaluating possible enhancements for it. Stay tuned! If you have any suggestions yourself, please let us know in the Support Forum.
16
+
17
+ An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes and/or PHP as content with linkable widget title.
18
+
19
+ = Options =
20
+
21
+ * Title
22
+ * Title URL
23
+ * Widget CSS class
24
+ * Content supports Text, HTML, CSS, JavaScript, Flash, Shortcodes, and PHP
25
+ * Option to not display a title
26
+ * Option to open Title URL in new window
27
+ * Option to automatically add paragraphs to content
28
+ * Option to not output before/after_widget/title (bare widget)
29
+
30
+
31
+ For questions, please ask in the [support forum](http://wordpress.org/support/plugin/enhanced-text-widget/)
32
+
33
+ = Support =
34
+
35
+ Enjoy this plugin? [Send a tip to support development](https://sellcodes.com/5U4SICyc).
36
+
37
+ == Installation ==
38
+
39
+ 1. Download and extract the zip archive
40
+ 2. Upload `enhanced-text-widget` folder to `/wp-content/plugins/`
41
+ 3. Activate the plugin through the 'Plugins' menu in WordPress
42
+ 4. Add the widget to a sidebar and configure the options as desired
43
+
44
+ == Frequently Asked Questions ==
45
+
46
+ Nothing right now.
47
+
48
+ == Screenshots ==
49
+
50
+ 1. Widget options
51
+
52
+ == Upgrade Notice ==
53
+
54
+ = 1.4.8 =
55
+ * Tested with new version of WordPress
56
+
57
+ = 1.3.4 =
58
+ This adds option to hide the title
59
+
60
+ = 1.2 =
61
+ This adds option to display bare text (no before/after widget/title elements are shown).
62
+
63
+ = 1.1 =
64
+ This adds a CSS class parameter to each widget.
65
+
66
+ = 1.0 =
67
+ This is the initial release.
68
+
69
+ == Changelog ==
70
+
71
+ = 1.4.8 =
72
+ * Revival
73
+ * Added feedback system
74
+ * Updated readme
75
+
76
+ = 1.4.6 =
77
+ * Tested up to WordPress 4.8
78
+
79
+ = 1.4.5 =
80
+ * Adds option to hide empty widgets
81
+
82
+ = 1.4.4 =
83
+ * Updates tested to 4.0
84
+ * Updates license to GPLv3
85
+ * Minor code refactoring
86
+
87
+ = 1.4.3 =
88
+ * Adds Italian translation
89
+
90
+ = 1.4.2 =
91
+ * Removes widget caching
92
+ * Fixes issue with multiline PHP code
93
+
94
+ = 1.4 =
95
+ * Display text field in monospace font
96
+ * Code refactoring
97
+
98
+ = 1.3.4 =
99
+ * This adds option to hide the title
100
+ * Tested up to 3.5.1
101
+
102
+ = 1.3.3 =
103
+ * Fixes "Do not output before/after_widget/title" option
104
+ * Code cleanup
105
+
106
+ = 1.3.2 =
107
+ * Bug fixes
108
+
109
+ = 1.3 =
110
+ * Fixed debug warnings
111
+ * Fixed code merge issue
112
+
113
+ = 1.2 =
114
+ * This adds option to display bare text (no before/after widget/title elements are shown).
115
+
116
+ = 1.1 =
117
+ * Adds css class parameter that wraps widget.
118
+
119
+ = 1.0 =
120
+ * First release.
enhanced-text-widget.php CHANGED
@@ -3,13 +3,16 @@
3
  Plugin Name: Enhanced Text Widget
4
  Plugin URI: http://wordpress.org/plugins/enhanced-text-widget/
5
  Description: An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes, and/or PHP as content with linkable widget title.
6
- Version: 1.4.7
7
  Author: Clever Widgets
8
  Author URI: https://themecheck.info
9
  Text Domain: enhancedtext
10
  Domain Path: /languages/
11
  License: MIT
12
  */
 
 
 
13
  require_once 'analyst/main.php';
14
 
15
  analyst_init(array(
@@ -62,7 +65,7 @@ class EnhancedTextWidget extends WP_Widget {
62
 
63
  // Parse the text through PHP
64
  ob_start();
65
- eval('?>' . $text);
66
  $text = ob_get_contents();
67
  ob_end_clean();
68
 
@@ -185,11 +188,3 @@ class EnhancedTextWidget extends WP_Widget {
185
  <?php
186
  }
187
  }
188
-
189
- /**
190
- * Register the widget
191
- */
192
- function enhanced_text_widget_init() {
193
- register_widget('EnhancedTextWidget');
194
- }
195
- add_action('widgets_init', 'enhanced_text_widget_init');
3
  Plugin Name: Enhanced Text Widget
4
  Plugin URI: http://wordpress.org/plugins/enhanced-text-widget/
5
  Description: An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes, and/or PHP as content with linkable widget title.
6
+ Version: 1.4.9
7
  Author: Clever Widgets
8
  Author URI: https://themecheck.info
9
  Text Domain: enhancedtext
10
  Domain Path: /languages/
11
  License: MIT
12
  */
13
+
14
+ // Exit if accessed directly.
15
+ if ( !defined('ABSPATH') ) exit;
16
  require_once 'analyst/main.php';
17
 
18
  analyst_init(array(
65
 
66
  // Parse the text through PHP
67
  ob_start();
68
+ eval('?>' . $text);
69
  $text = ob_get_contents();
70
  ob_end_clean();
71
 
188
  <?php
189
  }
190
  }
 
 
 
 
 
 
 
 
readme.txt CHANGED
@@ -3,8 +3,8 @@ Contributors: cl272
3
  Donate link: https://sellcodes.com/5U4SICyc
4
  Tags: widget, clickable, linkable, linked title, text, php, javascript, flash, linked title text, linked, text widget, php widget, link widget title, bare widget, widget shortcodes, enhanced text, better text widget, simple, html widget, css
5
  Requires at least: 3.6
6
- Tested up to: 5.3
7
- Stable tag: 1.4.7
8
  License: MIT
9
  License URI: http://opensource.org/licenses/MIT
10
 
@@ -12,7 +12,7 @@ An enhanced version of the text widget that supports Text, HTML, CSS, JavaScript
12
 
13
  == Description ==
14
 
15
- UPDATE: Plugin ownership changed for this plugin. We are currently evaluating possible enhancements for it. Stay tuned! If you have any suggestions yourself, please let us know in the Support Forum.
16
 
17
  An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes and/or PHP as content with linkable widget title.
18
 
@@ -51,6 +51,12 @@ Nothing right now.
51
 
52
  == Upgrade Notice ==
53
 
 
 
 
 
 
 
54
  = 1.3.4 =
55
  This adds option to hide the title
56
 
@@ -65,7 +71,10 @@ This is the initial release.
65
 
66
  == Changelog ==
67
 
68
- = 1.4.7 =
 
 
 
69
  * Revival
70
  * Added feedback system
71
  * Updated readme
3
  Donate link: https://sellcodes.com/5U4SICyc
4
  Tags: widget, clickable, linkable, linked title, text, php, javascript, flash, linked title text, linked, text widget, php widget, link widget title, bare widget, widget shortcodes, enhanced text, better text widget, simple, html widget, css
5
  Requires at least: 3.6
6
+ Tested up to: 5.4
7
+ Stable tag: 1.4.9
8
  License: MIT
9
  License URI: http://opensource.org/licenses/MIT
10
 
12
 
13
  == Description ==
14
 
15
+ UPDATE: Plugin ownership changed for this plugin. We are currently evaluating possible enhancements for it. Stay tuned! If you have any suggestions yourself, please let us know in the Support Forum.
16
 
17
  An enhanced version of the default text widget where you may have Text, HTML, CSS, JavaScript, Flash, Shortcodes and/or PHP as content with linkable widget title.
18
 
51
 
52
  == Upgrade Notice ==
53
 
54
+ = 1.4.9 =
55
+ * Rollback
56
+
57
+ = 1.4.8 =
58
+ * Tested with new version of WordPress
59
+
60
  = 1.3.4 =
61
  This adds option to hide the title
62
 
71
 
72
  == Changelog ==
73
 
74
+ = 1.4.9 =
75
+ * Rollback
76
+
77
+ = 1.4.8 =
78
  * Revival
79
  * Added feedback system
80
  * Updated readme