reviews-feed
Last commit date
assets
3 weeks ago
class
3 weeks ago
config
3 weeks ago
languages
3 weeks ago
public
3 weeks ago
templates
3 weeks ago
tests
3 weeks ago
vendor
3 weeks ago
bootstrap.php
3 weeks ago
crowdin.yml
3 weeks ago
gpl-2.0.txt
3 weeks ago
readme.txt
3 weeks ago
sb-reviews.php
3 weeks ago
uninstall.php
3 weeks 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.10.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.10.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 |