<?php
/*
Plugin Name: Widget for Google Reviews
Plugin URI: https://richplugins.com/business-reviews-bundle-wordpress-plugin
Description: Instantly Google Places Reviews on your website to increase user confidence and SEO.
Version: 2.1.7
Author: RichPlugins <support@richplugins.com>
Author URI: https://richplugins.com
Text Domain: widget-google-reviews
Domain Path: /languages
*/
namespace WP_Rplg_Google_Reviews;
if (!defined('ABSPATH')) {
exit;
}
require(ABSPATH . 'wp-includes/version.php');
define('GRW_VERSION' , '2.1.7');
define('GRW_PLUGIN_FILE' , __FILE__);
define('GRW_PLUGIN_URL' , plugins_url(basename(plugin_dir_path(__FILE__ )), basename(__FILE__)));
define('GRW_ASSETS_URL' , GRW_PLUGIN_URL . '/assets/');
define('GRW_GOOGLE_PLACE_API' , 'https://maps.googleapis.com/maps/api/place/');
define('GRW_GOOGLE_AVATAR' , 'https://lh3.googleusercontent.com/-8hepWJzFXpE/AAAAAAAAAAI/AAAAAAAAAAA/I80WzYfIxCQ/s128-c/114307615494839964028.jpg');
require_once __DIR__ . '/autoloader.php';
/*-------------------------------- Links --------------------------------*/
function grw_plugin_action_links($links, $file) {
$plugin_file = basename(__FILE__);
if (basename($file) == $plugin_file) {
$settings_link = '<a href="' . admin_url('admin.php?page=grw-builder') . '">' .
'<span style="background-color:#e7711b;color:#fff;font-weight:bold;padding:0px 8px 2px">' .
'Connect Reviews' .
'</span>' .
'</a>';
array_unshift($links, $settings_link);
}
return $links;
}
add_filter('plugin_action_links', 'WP_Rplg_Google_Reviews\\grw_plugin_action_links', 10, 2);
/*-------------------------------- Row Meta --------------------------------*/
function grw_plugin_row_meta($input, $file) {
if ($file != plugin_basename( __FILE__ )) {
return $input;
}
$links = array(
'<a href="' . admin_url('admin.php?page=grw-support') . '" target="_blank">' . __('View Documentation', 'widget-google-reviews') . '</a>',
'<a href="' . esc_url('https://richplugins.com/business-reviews-bundle-wordpress-plugin') . '" target="_blank">' . __('Upgrade to Business', 'widget-google-reviews') . ' »</a>',
);
$input = array_merge($input, $links);
return $input;
}
add_filter('plugin_row_meta', 'WP_Rplg_Google_Reviews\\grw_plugin_row_meta', 10, 2);
/*-------------------------------- Plugin init --------------------------------*/
$grw = new Includes\Plugin();
$grw->register();
?>