PluginProbe ʕ •ᴥ•ʔ
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More / 2.8.0
Reviews Feed – Add Testimonials and Customer Reviews From Google Reviews, Yelp, TripAdvisor, and More v2.8.0
2.11.0 2.10.0 2.9.0 2.8.0 2.7.0 2.6.7 2.6.8 2.6.5 2.6.4 2.6.3 2.6.2 2.6.0 2.5.5 2.5.4 2.5.3 2.5.2 trunk 1.0 1.0.1 1.0.2 1.0.3 1.1 1.1.1 1.1.2 1.2.0 2.0 2.1.0 2.1.1 2.4.0 2.4.1 2.4.2 2.4.3 2.4.4 2.4.5 2.4.6 2.5.0 2.5.1
reviews-feed / sb-reviews.php
reviews-feed Last commit date
assets 1 month ago class 1 month ago config 1 month ago languages 1 month ago public 1 month ago templates 1 month ago tests 1 month ago vendor 1 month ago bootstrap.php 1 month ago crowdin.yml 1 month ago gpl-2.0.txt 1 month ago readme.txt 1 month ago sb-reviews.php 1 month ago uninstall.php 1 month ago
sb-reviews.php
45 lines
1 <?php
2
3 /*
4 Plugin Name: Smash Balloon Reviews Feed
5 Plugin URI: https://smashballoon.com/reviews-feed
6 Description: Reviews Feeds allows you to display completely customizable Reviews feeds from many different providers.
7 Version: 2.8.0
8 Author: Smash Balloon
9 Author URI: https://smashballoon.com/
10 Text Domain: reviews-feed
11 Domain Path: /languages
12 */
13
14 /*
15 Copyright 2024 Smash Balloon LLC (email : hey@smashballoon.com)
16 This program is free software; you can redistribute it and/or modify
17 it under the terms of the GNU General Public License as published by
18 the Free Software Foundation; either version 2 of the License, or
19 (at your option) any later version.
20 This program is distributed in the hope that it will be useful,
21 but WITHOUT ANY WARRANTY; without even the implied warranty of
22 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 GNU General Public License for more details.
24 You should have received a copy of the GNU General Public License
25 along with this program; if not, write to the Free Software
26 Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
27 */
28 if (!defined('SBRVER')) {
29 define('SBRVER', '2.8.0');
30 }
31
32 if (!defined('SBR_PLUGIN_DIR')) {
33 define('SBR_PLUGIN_DIR', plugin_dir_path(__FILE__));
34 }
35
36 if (!defined('SBR_LITE')) {
37 define('SBR_LITE', true);
38 }
39
40 if (!defined('SBR_PLUGIN_BASENAME')) {
41 define('SBR_PLUGIN_BASENAME', plugin_basename(__FILE__));
42 }
43
44 require_once trailingslashit(SBR_PLUGIN_DIR) . 'bootstrap.php';
45