update
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
<?php
|
||||
/**
|
||||
* 2007-2016 PrestaShop
|
||||
/*
|
||||
* 2007-2020 PrestaShop
|
||||
*
|
||||
* NOTICE OF LICENSE
|
||||
*
|
||||
* This source file is subject to the Open Software License (OSL 3.0)
|
||||
* This source file is subject to the Academic Free License (AFL 3.0)
|
||||
* that is bundled with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://opensource.org/licenses/osl-3.0.php
|
||||
* https://opensource.org/licenses/afl-3.0.php
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@prestashop.com so we can send you a copy immediately.
|
||||
@@ -16,11 +16,11 @@
|
||||
*
|
||||
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
|
||||
* versions in the future. If you wish to customize PrestaShop for your
|
||||
* needs please refer to http://www.prestashop.com for more information.
|
||||
* needs please refer to https://www.prestashop.com for more information.
|
||||
*
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2016 PrestaShop SA
|
||||
* @license http://opensource.org/licenses/osl-3.0.php Open Software License (OSL 3.0)
|
||||
* @author PrestaShop SA <contact@prestashop.com>
|
||||
* @copyright 2007-2020 PrestaShop SA
|
||||
* @license https://opensource.org/licenses/afl-3.0.php Academic Free License (AFL 3.0)
|
||||
* International Registered Trademark & Property of PrestaShop SA
|
||||
*/
|
||||
|
||||
@@ -32,46 +32,75 @@ use PrestaShop\PrestaShop\Core\Module\WidgetInterface;
|
||||
|
||||
class Ps_Sharebuttons extends Module implements WidgetInterface
|
||||
{
|
||||
protected static $networks = array('Facebook', 'Twitter', 'Google', 'Pinterest');
|
||||
/**
|
||||
* @var string Name of the module running on PS 1.6.x. Used for data migration.
|
||||
*/
|
||||
const PS_16_EQUIVALENT_MODULE = 'socialsharing';
|
||||
|
||||
protected static $networks = ['Facebook', 'Twitter', 'Pinterest'];
|
||||
|
||||
private $templateFile;
|
||||
|
||||
public function __construct()
|
||||
{
|
||||
$this->name = 'ps_sharebuttons';
|
||||
$this->tab = 'advertising_marketing';
|
||||
$this->author = 'PrestaShop';
|
||||
$this->version = '2.0.1';
|
||||
$this->version = '2.1.2';
|
||||
$this->need_instance = 0;
|
||||
|
||||
$this->ps_versions_compliancy = array('min' => '1.7.1.0', 'max' => _PS_VERSION_);
|
||||
$this->_directory = dirname(__FILE__);
|
||||
$this->ps_versions_compliancy = ['min' => '1.7.1.0', 'max' => _PS_VERSION_];
|
||||
|
||||
$this->bootstrap = true;
|
||||
parent::__construct();
|
||||
|
||||
$this->displayName = $this->trans('Social media share buttons', array(), 'Modules.Sharebuttons.Admin');
|
||||
$this->description = $this->trans('Displays social media sharing buttons (Twitter, Facebook, Google+ and Pinterest) on every product page.', array(), 'Modules.Sharebuttons.Admin');
|
||||
$this->displayName = $this->trans('Social media share buttons', [], 'Modules.Sharebuttons.Admin');
|
||||
$this->description = $this->trans('Instagram, YouTube, gather your community with social media sharing buttons on product pages.', [], 'Modules.Sharebuttons.Admin');
|
||||
|
||||
$this->templateFile = 'module:ps_sharebuttons/views/templates/hook/ps_sharebuttons.tpl';
|
||||
}
|
||||
|
||||
public function install()
|
||||
{
|
||||
if (!$this->uninstallPrestaShop16Module()) {
|
||||
Configuration::updateValue('PS_SC_TWITTER', 1);
|
||||
Configuration::updateValue('PS_SC_FACEBOOK', 1);
|
||||
Configuration::updateValue('PS_SC_PINTEREST', 1);
|
||||
}
|
||||
|
||||
return parent::install()
|
||||
&& Configuration::updateValue('PS_SC_TWITTER', 1)
|
||||
&& Configuration::updateValue('PS_SC_FACEBOOK', 1)
|
||||
&& Configuration::updateValue('PS_SC_GOOGLE', 1)
|
||||
&& Configuration::updateValue('PS_SC_PINTEREST', 1)
|
||||
&& $this->registerHook('displayProductButtons')
|
||||
&& $this->registerHook('displayProductAdditionalInfo')
|
||||
;
|
||||
}
|
||||
|
||||
/**
|
||||
* Migrate data from 1.6 equivalent module (if applicable), then uninstall
|
||||
*/
|
||||
public function uninstallPrestaShop16Module()
|
||||
{
|
||||
if (!Module::isInstalled(self::PS_16_EQUIVALENT_MODULE)) {
|
||||
return false;
|
||||
}
|
||||
$oldModule = Module::getInstanceByName(self::PS_16_EQUIVALENT_MODULE);
|
||||
if ($oldModule) {
|
||||
// This closure calls the parent class to prevent data to be erased
|
||||
// It allows the new module to be configured without migration
|
||||
$parentUninstallClosure = function () {
|
||||
return parent::uninstall();
|
||||
};
|
||||
$parentUninstallClosure = $parentUninstallClosure->bindTo($oldModule, get_class($oldModule));
|
||||
$parentUninstallClosure();
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
public function getConfigFieldsValues()
|
||||
{
|
||||
$values = array();
|
||||
$values = [];
|
||||
|
||||
foreach (self::$networks as $network) {
|
||||
$values['PS_SC_'.Tools::strtoupper($network)] = (int)Tools::getValue('PS_SC_'.Tools::strtoupper($network), Configuration::get('PS_SC_'.Tools::strtoupper($network)));
|
||||
$values['PS_SC_' . Tools::strtoupper($network)] = (int) Tools::getValue('PS_SC_' . Tools::strtoupper($network), Configuration::get('PS_SC_' . Tools::strtoupper($network)));
|
||||
}
|
||||
|
||||
return $values;
|
||||
@@ -82,71 +111,64 @@ class Ps_Sharebuttons extends Module implements WidgetInterface
|
||||
$output = '';
|
||||
if (Tools::isSubmit('submitSocialSharing')) {
|
||||
foreach (self::$networks as $network) {
|
||||
Configuration::updateValue('PS_SC_'.Tools::strtoupper($network), (int)Tools::getValue('PS_SC_'.Tools::strtoupper($network)));
|
||||
Configuration::updateValue('PS_SC_' . Tools::strtoupper($network), (int) Tools::getValue('PS_SC_' . Tools::strtoupper($network)));
|
||||
}
|
||||
|
||||
$this->_clearCache($this->templateFile);
|
||||
|
||||
$output .= $this->displayConfirmation($this->trans('Settings updated.', array(), 'Admin.Notifications.Success'));
|
||||
$output .= $this->displayConfirmation($this->trans('Settings updated.', [], 'Admin.Notifications.Success'));
|
||||
|
||||
Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules', true).'&conf=6&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name);
|
||||
Tools::redirectAdmin($this->context->link->getAdminLink('AdminModules', true) . '&conf=6&configure=' . $this->name . '&tab_module=' . $this->tab . '&module_name=' . $this->name);
|
||||
}
|
||||
|
||||
$helper = new HelperForm();
|
||||
$helper->submit_action = 'submitSocialSharing';
|
||||
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false).'&configure='.$this->name.'&tab_module='.$this->tab.'&module_name='.$this->name;
|
||||
$helper->currentIndex = $this->context->link->getAdminLink('AdminModules', false) . '&configure=' . $this->name . '&tab_module=' . $this->tab . '&module_name=' . $this->name;
|
||||
$helper->token = Tools::getAdminTokenLite('AdminModules');
|
||||
$helper->tpl_vars = array('fields_value' => $this->getConfigFieldsValues());
|
||||
$helper->tpl_vars = ['fields_value' => $this->getConfigFieldsValues()];
|
||||
|
||||
$fields = array();
|
||||
$fields = [];
|
||||
foreach (self::$networks as $network) {
|
||||
$fields[] = array(
|
||||
$fields[] = [
|
||||
'type' => 'switch',
|
||||
'label' => $network,
|
||||
'name' => 'PS_SC_'.Tools::strtoupper($network),
|
||||
'values' => array(
|
||||
array(
|
||||
'id' => Tools::strtolower($network).'_active_on',
|
||||
'name' => 'PS_SC_' . Tools::strtoupper($network),
|
||||
'values' => [
|
||||
[
|
||||
'id' => Tools::strtolower($network) . '_active_on',
|
||||
'value' => 1,
|
||||
'label' => $this->trans('Enabled', array(), 'Admin.Global')
|
||||
),
|
||||
array(
|
||||
'id' => Tools::strtolower($network).'_active_off',
|
||||
'label' => $this->trans('Yes', [], 'Admin.Global'),
|
||||
],
|
||||
[
|
||||
'id' => Tools::strtolower($network) . '_active_off',
|
||||
'value' => 0,
|
||||
'label' => $this->trans('Disabled', array(), 'Admin.Global')
|
||||
)
|
||||
)
|
||||
);
|
||||
'label' => $this->trans('No', [], 'Admin.Global'),
|
||||
],
|
||||
],
|
||||
];
|
||||
}
|
||||
|
||||
return $output.$helper->generateForm(array(
|
||||
array(
|
||||
'form' => array(
|
||||
'legend' => array(
|
||||
return $output . $helper->generateForm([
|
||||
[
|
||||
'form' => [
|
||||
'legend' => [
|
||||
'title' => $this->displayName,
|
||||
'icon' => 'icon-share'
|
||||
),
|
||||
'icon' => 'icon-share',
|
||||
],
|
||||
'input' => $fields,
|
||||
'submit' => array(
|
||||
'title' => $this->trans('Save', array(), 'Admin.Actions')
|
||||
)
|
||||
)
|
||||
)
|
||||
));
|
||||
'submit' => [
|
||||
'title' => $this->trans('Save', [], 'Admin.Actions'),
|
||||
],
|
||||
],
|
||||
],
|
||||
]);
|
||||
}
|
||||
|
||||
public function renderWidget($hookName, array $params)
|
||||
{
|
||||
$key = 'ps_sharebuttons|' . $params['product']['id_product'];
|
||||
if (!empty($params['product']['id_product_attribute'])) {
|
||||
$key .= '|' . $params['product']['id_product_attribute'];
|
||||
}
|
||||
$this->smarty->assign($this->getWidgetVariables($hookName, $params));
|
||||
|
||||
if (!$this->isCached($this->templateFile, $this->getCacheId($key))) {
|
||||
$this->smarty->assign($this->getWidgetVariables($hookName, $params));
|
||||
}
|
||||
|
||||
return $this->fetch($this->templateFile, $this->getCacheId($key));
|
||||
return $this->fetch($this->templateFile);
|
||||
}
|
||||
|
||||
public function getWidgetVariables($hookName, array $params)
|
||||
@@ -162,52 +184,44 @@ class Ps_Sharebuttons extends Module implements WidgetInterface
|
||||
}
|
||||
|
||||
$social_share_links = [];
|
||||
$sharing_url = addcslashes($this->context->link->getProductLink($product), "'");
|
||||
$sharing_name = addcslashes($product->name, "'");
|
||||
$sharing_url = urlencode(addcslashes($this->context->link->getProductLink($product), "'"));
|
||||
$sharing_name = urlencode(addcslashes($product->name, "'"));
|
||||
|
||||
$image_cover_id = $product->getCover($product->id);
|
||||
if (is_array($image_cover_id) && isset($image_cover_id['id_image'])) {
|
||||
$image_cover_id = (int)$image_cover_id['id_image'];
|
||||
$image_cover_id = (int) $image_cover_id['id_image'];
|
||||
} else {
|
||||
$image_cover_id = 0;
|
||||
}
|
||||
|
||||
$sharing_img = addcslashes($this->context->link->getImageLink($product->link_rewrite, $image_cover_id), "'");
|
||||
$sharing_img = urlencode(addcslashes($this->context->link->getImageLink($product->link_rewrite, (string) $image_cover_id), "'"));
|
||||
|
||||
if (Configuration::get('PS_SC_FACEBOOK')) {
|
||||
$social_share_links['facebook'] = array(
|
||||
'label' => $this->trans('Share', array(), 'Modules.Sharebuttons.Shop'),
|
||||
$social_share_links['facebook'] = [
|
||||
'label' => $this->trans('Share', [], 'Modules.Sharebuttons.Shop'),
|
||||
'class' => 'facebook',
|
||||
'url' => 'http://www.facebook.com/sharer.php?u='.$sharing_url,
|
||||
);
|
||||
'url' => 'https://www.facebook.com/sharer.php?u=' . $sharing_url,
|
||||
];
|
||||
}
|
||||
|
||||
if (Configuration::get('PS_SC_TWITTER')) {
|
||||
$social_share_links['twitter'] = array(
|
||||
'label' => $this->trans('Tweet', array(), 'Modules.Sharebuttons.Shop'),
|
||||
$social_share_links['twitter'] = [
|
||||
'label' => $this->trans('Tweet', [], 'Modules.Sharebuttons.Shop'),
|
||||
'class' => 'twitter',
|
||||
'url' => 'https://twitter.com/intent/tweet?text='.$sharing_name.' '.$sharing_url,
|
||||
);
|
||||
}
|
||||
|
||||
if (Configuration::get('PS_SC_GOOGLE')) {
|
||||
$social_share_links['googleplus'] = array(
|
||||
'label' => $this->trans('Google+', array(), 'Modules.Sharebuttons.Shop'),
|
||||
'class' => 'googleplus',
|
||||
'url' => 'https://plus.google.com/share?url='.$sharing_url,
|
||||
);
|
||||
'url' => 'https://twitter.com/intent/tweet?text=' . $sharing_name . ' ' . $sharing_url,
|
||||
];
|
||||
}
|
||||
|
||||
if (Configuration::get('PS_SC_PINTEREST')) {
|
||||
$social_share_links['pinterest'] = array(
|
||||
'label' => $this->trans('Pinterest', array(), 'Modules.Sharebuttons.Shop'),
|
||||
$social_share_links['pinterest'] = [
|
||||
'label' => $this->trans('Pinterest', [], 'Modules.Sharebuttons.Shop'),
|
||||
'class' => 'pinterest',
|
||||
'url' => 'http://www.pinterest.com/pin/create/button/?media='.$sharing_img.'&url='.$sharing_url,
|
||||
);
|
||||
'url' => 'https://www.pinterest.com/pin/create/button/?media=' . $sharing_img . '&url=' . $sharing_url,
|
||||
];
|
||||
}
|
||||
|
||||
return array(
|
||||
return [
|
||||
'social_share_links' => $social_share_links,
|
||||
);
|
||||
];
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user