PluginProbe
Visualizer – Tables & Charts Manager with Built-in AI Generator / 1.5.6
Visualizer – Tables & Charts Manager with Built-in AI Generator v1.5.6
4.0.7 4.0.6 4.0.5 4.0.4 4.0.3 3.0.5 3.0.6 3.0.7 3.0.8 3.0.9 3.1.0 3.1.1 3.1.2 3.1.3 3.10.0 3.10.1 3.10.10 3.10.11 3.10.12 3.10.13 3.10.14 3.10.15 3.10.2 3.10.3 3.10.4 All 148 releases
← All changes | classes/Visualizer/Render/Page.php +12 -1 3.10.111.5.6 View file →
@@ -18,8 +18,10 @@
18 18 // | MA 02110-1301 USA |
19 19 // +----------------------------------------------------------------------+
20 20 // | Author: Eugene Manuilov <eugene@manuilov.org> |
21 21 // +----------------------------------------------------------------------+
22 +
23 +
22 24 /**
23 25 * Base class for all chart builder pages.
24 26 *
25 27 * @category Visualizer
@@ -63,10 +65,19 @@
63 65 * @access protected
64 66 */
65 67 protected function _renderSidebar() {
66 68 echo '<div id="sidebar">';
69 + echo '<ul class="group-wrapper">';
67 70 $this->_renderSidebarContent();
71 + echo '</ul>';
68 72
73 + echo '<div id="rate-the-plugin">';
74 + echo '<div><b>', esc_html__( 'Like the plugin? Show us your love!', Visualizer_Plugin::NAME ), '</b></div>';
75 + echo '<div id="rate-stars">&nbsp;</div>';
76 + echo '<a id="rate-link" href="http://wordpress.org/support/view/plugin-reviews/visualizer" target="_blank">';
77 + esc_html_e( 'Rate it on WordPress.org', Visualizer_Plugin::NAME );
78 + echo '</a>';
79 + echo '</div>';
69 80 echo '</div>';
70 81 }
71 82
72 83 /**
@@ -86,5 +97,5 @@
86 97 * @access protected
87 98 */
88 99 protected function _renderToolbar() {}
89 100
90 -}
101 +}