152 lines
3.5 KiB
PHP
152 lines
3.5 KiB
PHP
<?php
|
|
/**
|
|
* Bootstraps the ShareThis Share Buttons plugin.
|
|
*
|
|
* @package ShareThisShareButtons
|
|
*/
|
|
|
|
namespace ShareThisShareButtons;
|
|
|
|
/**
|
|
* Main plugin bootstrap file.
|
|
*/
|
|
class Plugin extends Plugin_Base {
|
|
|
|
/**
|
|
* Plugin constructor.
|
|
*/
|
|
public function __construct() {
|
|
parent::__construct();
|
|
|
|
// Global.
|
|
$button_widget = new Button_Widget( $this );
|
|
|
|
// Initiate classes.
|
|
$classes = array(
|
|
new Share_Buttons( $this, $button_widget ),
|
|
$button_widget,
|
|
new Minute_Control( $this ),
|
|
);
|
|
|
|
// Add classes doc hooks.
|
|
foreach ( $classes as $instance ) {
|
|
$this->add_doc_hooks( $instance );
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register MU Script
|
|
*
|
|
* @action wp_enqueue_scripts
|
|
*/
|
|
public function register_assets() {
|
|
$propertyid = get_option( 'sharethis_property_id' );
|
|
$propertyid = false !== $propertyid && null !== $propertyid ? explode( '-', $propertyid, 2 ) : array();
|
|
$first_prod = get_option( 'sharethis_first_product' );
|
|
$first_prod = false !== $first_prod && null !== $first_prod ? $first_prod : '';
|
|
|
|
if ( is_array( $propertyid ) && array() !== $propertyid ) {
|
|
wp_register_script(
|
|
ASSET_PREFIX . '-mu',
|
|
"//platform-api.sharethis.com/js/sharethis.js#property={$propertyid[0]}&product={$first_prod}-buttons&source=sharethis-share-buttons-wordpress",
|
|
array(),
|
|
SHARETHIS_SHARE_BUTTONS_VERSION,
|
|
false
|
|
);
|
|
}
|
|
|
|
// Register style sheet for sticky hiding.
|
|
wp_register_style(
|
|
ASSET_PREFIX . '-sticky',
|
|
DIR_URL . 'css/mu-style.css',
|
|
array(),
|
|
filemtime( DIR_PATH . 'css/mu-style.css' )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Register admin scripts/styles.
|
|
*
|
|
* @action admin_enqueue_scripts
|
|
*/
|
|
public function register_admin_assets() {
|
|
wp_register_script(
|
|
ASSET_PREFIX . '-mua',
|
|
'//platform-api.sharethis.com/js/sharethis.js?product=inline-share-buttons',
|
|
array(),
|
|
SHARETHIS_SHARE_BUTTONS_VERSION,
|
|
false
|
|
);
|
|
wp_register_script(
|
|
ASSET_PREFIX . '-admin',
|
|
DIR_URL . 'js/admin.js',
|
|
array( 'jquery', 'jquery-ui-sortable', 'wp-util', 'wp-color-picker' ),
|
|
filemtime( DIR_PATH . 'js/admin.js' ),
|
|
false
|
|
);
|
|
wp_register_script(
|
|
ASSET_PREFIX . '-meta-box',
|
|
DIR_URL . 'js/meta-box.js',
|
|
array( 'jquery', 'wp-util' ),
|
|
filemtime( DIR_PATH . 'js/meta-box.js' ),
|
|
false
|
|
);
|
|
wp_register_style(
|
|
ASSET_PREFIX . '-admin',
|
|
DIR_URL . 'css/admin.css',
|
|
array( 'wp-color-picker' ),
|
|
filemtime( DIR_PATH . 'css/admin.css' )
|
|
);
|
|
wp_register_style(
|
|
ASSET_PREFIX . '-meta-box',
|
|
DIR_URL . 'css/meta-box.css',
|
|
array(),
|
|
filemtime( DIR_PATH . 'css/meta-box.css' )
|
|
);
|
|
}
|
|
|
|
/**
|
|
* Helper to get the formated network image.
|
|
*
|
|
* @param string $title The netwokr title.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getFormattedNetworkImage( $title ) {
|
|
return 'https://platform-cdn.sharethis.com/img/' . self::getPlatformName( $title ) . '.svg';
|
|
}
|
|
|
|
/**
|
|
* Helper to format network title for image retrieval.
|
|
*
|
|
* @param string $title The network title.
|
|
*
|
|
* @return string
|
|
*/
|
|
public static function getFormattedNetworkTitle( $title ) {
|
|
return sanitize_title(
|
|
str_replace(
|
|
array( ' Share Button', 'Google Bookmarks', 'Yahoo Mail' ),
|
|
array( '', 'Bookmarks', 'YahooMail' ),
|
|
$title
|
|
)
|
|
);
|
|
}
|
|
|
|
/**
|
|
*
|
|
* Strips name to look like platform name.
|
|
*
|
|
* @param string $title Title string.
|
|
*
|
|
* @return string Modified title string.
|
|
*/
|
|
public static function getPlatformName( $title ) {
|
|
return str_replace(
|
|
array( '-pin', 'facebook-messenger', 'sina-', '-ru', 'yahoo-mail', 'okru' ),
|
|
array( '', 'messenger', '', 'ru', 'yahoomail', 'odnoklassniki' ),
|
|
$title
|
|
);
|
|
}
|
|
}
|