Merged in feature/MAW-846-sharethis (pull request #52)

Feature/MAW-846 sharethis

* MAW-846: ShareThis social button plugin

* MAW-846: ShareThis social buttons update

* Merged develop into feature/MAW-846-sharethis
This commit is contained in:
SRIRAM RAO TAKKALLAPELLY
2024-05-17 14:24:19 +00:00
parent 5dbb0b284e
commit 4783d97a46
44 changed files with 7815 additions and 0 deletions

View File

@@ -0,0 +1,29 @@
<?php
/**
* Instantiates the ShareThis Share Buttons plugin
*
* @package ShareThisShareButtons
*/
namespace ShareThisShareButtons;
global $sharethis_share_buttons_plugin;
require_once __DIR__ . '/php/class-plugin-base.php';
require_once __DIR__ . '/php/class-plugin.php';
require_once __DIR__ . '/php/class-button-widget.php';
require_once __DIR__ . '/php/class-minute-control.php';
require_once __DIR__ . '/php/class-share-buttons.php';
$sharethis_share_buttons_plugin = new Plugin();
/**
* ShareThis Share Buttons Plugin Instance
*
* @return Plugin
*/
function get_plugin_instance() {
global $sharethis_share_buttons_plugin;
return $sharethis_share_buttons_plugin;
}