PluginProbe ʕ •ᴥ•ʔ
Rich Showcase for Google Reviews / 6.4
Rich Showcase for Google Reviews v6.4
6.9.8 6.9.7 6.9.6 trunk 1.4 1.42 1.43 1.44 1.45 1.46 1.47 1.48 1.49 1.5 1.5.2 1.5.3 1.5.4 1.5.5 1.5.6 1.5.7 1.5.8 1.5.9 1.6 1.6.1 1.6.2 1.6.3 1.6.4 1.6.5 1.6.7 1.6.8 1.6.9 1.7 1.7.1 1.7.2 1.7.3 1.7.4 1.7.5 1.7.6 1.7.7 1.7.8 1.7.9 1.8 1.8.1 1.8.2 1.8.3 1.8.4 1.8.5 1.8.6 1.8.7 1.8.8 1.8.9 1.9 1.9.1 1.9.2 1.9.3 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0 2.0.1 2.0.2 2.0.3 2.0.4 2.0.5 2.0.6 2.0.7 2.0.8 2.0.9 2.1.0 2.1.1 2.1.2 2.1.3 2.1.4 2.1.5 2.1.6 2.1.7 2.1.8 2.1.9 2.2 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 2.2.7 2.2.8 2.2.9 2.3 2.4 2.4.1 2.4.2 2.5 2.5.1 2.6 2.6.1 2.6.2 2.7 2.8 2.9 3.0 3.1 3.2 3.3 3.4 3.5 3.6 3.6.1 3.7 3.8 3.9 4.0 4.1 4.2 4.3 4.4 4.5 4.6 4.7 4.8 4.8.1 4.8.2 5.0 5.1 5.2 5.3 5.4 5.5 5.6 5.7 5.7.1 5.8 5.9 5.9.1 5.9.2 5.9.3 5.9.7 6.0 6.1 6.2 6.3 6.4 6.4.1 6.5 6.6 6.6.1 6.6.2 6.7 6.8 6.8.1 6.8.2 6.9 6.9.1 6.9.2 6.9.3 6.9.4 6.9.4.1 6.9.4.2 6.9.4.3 6.9.4.4 6.9.5
widget-google-reviews / includes / class-plugin-overview.php
widget-google-reviews / includes Last commit date
admin 10 months ago core 10 months ago class-activator.php 10 months ago class-assets.php 11 months ago class-builder-page.php 1 year ago class-deactivator.php 3 years ago class-debug-info.php 2 years ago class-feed-ajax.php 1 year ago class-feed-block.php 1 year ago class-feed-deserializer.php 11 months ago class-feed-old.php 4 years ago class-feed-page.php 11 months ago class-feed-serializer.php 2 years ago class-feed-shortcode.php 2 years ago class-feed-widget.php 4 years ago class-plugin-overview-ajax.php 1 year ago class-plugin-overview.php 11 months ago class-plugin-settings.php 10 months ago class-plugin-support.php 1 year ago class-plugin.php 11 months ago class-post-types.php 3 years ago class-reviews-cron.php 1 year ago class-settings-save.php 1 year ago class-view.php 10 months ago index.php 4 years ago page-setting-advance.php 1 year ago page-setting-fig.php 1 year ago page-setting-support.php 4 years ago
class-plugin-overview.php
108 lines
1 <?php
2
3 namespace WP_Rplg_Google_Reviews\Includes;
4
5 use WP_Rplg_Google_Reviews\Includes\Core\Core;
6
7 class Plugin_Overview {
8
9 private $builder_page;
10
11 public function __construct($builder_page) {
12 $this->builder_page = $builder_page;
13 }
14
15 public function register() {
16 add_action('grw_admin_page_grw', array($this, 'init'));
17
18 $render_function;
19 $feed_ids = get_option('grw_feed_ids');
20 if (empty($feed_ids)) {
21 $render_function = array($this, 'connect');
22 } else {
23 $render_function = array($this, 'render');
24 }
25
26 add_action('grw_admin_page_grw', $render_function);
27 }
28
29 public function init() {
30
31 }
32
33 public function connect() {
34 $this->builder_page->render(null);
35 }
36
37 public function render() {
38 wp_nonce_field('grw_wpnonce', 'grw_nonce');
39 wp_enqueue_script('grw-admin-apexcharts-js');
40 ?>
41
42 <div class="grw-page-title">
43 Overview
44 </div>
45
46 <div class="grw-overview-workspace">
47
48 <div class="grw-overview-places">
49 <select id="grw-overview-months">
50 <option value="6" selected>6 months</option>
51 <option value="12">a year</option>
52 <option value="24">2 years</option>
53 <option value="36">3 years</option>
54 <option value="60">5 years</option>
55 </select>
56 <select id="grw-overview-places"></select>
57 </div>
58
59 <div class="grw-flex-row">
60 <div class="grw-flex-col6">
61
62 <div class="grw-card">
63 <div class="grw-card-body">
64 <div id="chart"></div>
65 </div>
66 </div>
67
68 </div>
69
70 <div class="grw-flex-col4">
71
72 <div class="grw-flex-row">
73
74 <div class="grw-flex-col">
75 <div class="grw-card">
76 <div class="grw-card-header">Rating</div>
77 <div class="grw-card-body grw-card-fh">
78 <div id="grw-overview-rating"><img src="<?php echo GRW_ASSETS_URL; ?>img/dots-spinner.svg"></div>
79 </div>
80 </div><br>
81 <div class="grw-card">
82 <div class="grw-card-header">Usage Stats</div>
83 <div class="grw-card-body grw-card-fh">
84 <div id="grw-overview-stats"><img src="<?php echo GRW_ASSETS_URL; ?>img/dots-spinner.svg"></div>
85 </div>
86 </div>
87 </div>
88
89 <div class="grw-flex-col">
90 <div class="grw-card">
91 <div class="grw-card-header">Latest Reviews</div>
92 <div class="grw-card-body grw-card-fh" style="padding-top:0">
93 <div id="grw-overview-reviews"><img src="<?php echo GRW_ASSETS_URL; ?>img/dots-spinner.svg"></div>
94 </div>
95 </div>
96 </div>
97 </div>
98
99 </div>
100
101 </div>
102
103 </div>
104
105 <?php
106 }
107 }
108