Your IP : 216.73.217.123


Current Path : /home/blindman/www/wp-content/plugins/business-reviews-bundle/
Upload File :
Current File : /home/blindman/www/wp-content/plugins/business-reviews-bundle/brb.php

<?php
/*
Plugin Name: Business Reviews Bundle
Plugin URI: https://richplugins.com/
Description: Business Reviews Bundle is a WordPress plugin that merges and displays reviews from Google, Facebook, and Yelp in a single feed.
Version: 2.0.5
Author: RichPlugins
Author URI: https://richplugins.com/
Text Domain: brb
Domain Path: /languages
Update URI: https://richplugins.com/business-reviews-bundle-wordpress-plugin
*/

namespace WP_Business_Reviews_Bundle;

if (!defined('ABSPATH')) {
    exit;
}

require(ABSPATH . 'wp-includes/version.php');

define('BRB_VERSION'         , '2.0.5');
define('BRB_DEBUG'           , get_option('brb_debug_mode') === '1');
define('BRB_PLUGIN_FILE'     , __FILE__ );
define('BRB_PLUGIN_PATH'     , plugin_dir_path(BRB_PLUGIN_FILE));
define('BRB_PLUGIN_URL'      , plugins_url(basename(BRB_PLUGIN_PATH), basename(__FILE__)));
define('BRB_ASSETS_URL'      , BRB_PLUGIN_URL . '/assets/');

define('BRB_GOOGLE_API'      , 'https://maps.googleapis.com/maps/api/place/');
define('BRB_YELP_API'        , 'https://app.richplugins.com/yarw');

define('BRB_GMB_API_LIMIT'   , 50);
define('BRB_FB_API_LIMIT'    , 25);

define('BRB_AVATAR_SIZE'     , '56');
define('BRB_GOOGLE_AVATAR'   , BRB_ASSETS_URL . 'img/google_avatar.png');
define('BRB_FACEBOOK_AVATAR' , BRB_ASSETS_URL . 'img/fb_avatar.png');
define('BRB_YELP_AVATAR'     , BRB_ASSETS_URL . 'img/yelp_avatar.png');
define('BRB_BIZ_LOGO'        , BRB_ASSETS_URL . 'img/gmblogo.svg');

require_once __DIR__ . '/autoloader.php';

$brb_plugin = new Includes\Plugin();
$brb_plugin->register();

?>