File: D:/web/matomo.vdk/plugins/TagManager/Template/Tag/ShareaholicTag.php
<?php
/**
* Matomo - free/libre analytics platform
*
* @link https://matomo.org
* @license http://www.gnu.org/licenses/gpl-3.0.html GPL v3 or later
*/
namespace Piwik\Plugins\TagManager\Template\Tag;
use Piwik\Piwik;
use Piwik\Settings\FieldConfig;
use Piwik\Plugins\TagManager\Template\Tag\BaseTag;
use Piwik\Validators\NotEmpty;
class ShareaholicTag extends BaseTag
{
public function getCategory()
{
return self::CATEGORY_SOCIAL;
}
public function getIcon()
{
return 'plugins/TagManager/images/icons/shareaholic.svg';
}
public function getParameters()
{
$InPageApp = $this->makeSetting('shareaholicInPageApp', '', FieldConfig::TYPE_STRING, function (FieldConfig $field) {
$field->title = Piwik::translate('TagManager_ShareaholicTagInPageAppTitle');
$field->uiControl = FieldConfig::UI_CONTROL_SINGLE_SELECT;
$field->availableValues = array(
'' => 'None',
'share_buttons' => 'Share Buttons',
'follow_buttons' => 'Follow Buttons',
'recommendations' => 'Related Content',
'total_share_count' => 'Total Share Counter' //TODO: Also supports data-link and data-services
);
$field->description = Piwik::translate('TagManager_ShareaholicTagInPageAppDescription');
});
return array(
$this->makeSetting('shareaholicSiteId', '', FieldConfig::TYPE_STRING, function (FieldConfig $field) {
$field->title = Piwik::translate('TagManager_ShareaholicTagSiteIdTitle');
$field->description = Piwik::translate('TagManager_ShareaholicTagSiteIdDescription');
$field->customFieldComponent = self::FIELD_VARIABLE_COMPONENT;
$field->validators[] = new NotEmpty();
}),
$InPageApp,
$this->makeSetting('shareaholicAppId', '', FieldConfig::TYPE_STRING, function (FieldConfig $field) use ($InPageApp) {
$field->title = Piwik::translate('TagManager_ShareaholicTagAppIdTitle');
$field->description = Piwik::translate('TagManager_ShareaholicTagAppIdDescription');
$field->condition = 'shareaholicInPageApp=="share_buttons" || shareaholicInPageApp=="follow_buttons" || shareaholicInPageApp=="recommendations"';
$field->customFieldComponent = self::FIELD_VARIABLE_COMPONENT;
$field->validate = function ($value) use ($InPageApp, $field) {
if (!empty($InPageApp->getValue()) && $InPageApp->getValue() != 'total_share_count' && empty($value)) {
throw new \Exception('You need to specify an App ID if you want to use a InPageApp');
}
if ($InPageApp->getValue() == 'total_share_count' && !empty($value)) {
throw new \Exception("The Total Share Counter doesn't need an App ID");
}
};
}),
$this->makeSetting('shareaholicParentSelector', '', FieldConfig::TYPE_STRING, function (FieldConfig $field) use ($InPageApp) {
$field->title = Piwik::translate('TagManager_ShareaholicTagParentSelectorTitle');
$field->description = Piwik::translate('TagManager_ShareaholicTagParentSelectorDescription');
$field->condition = 'shareaholicInPageApp';
$field->customFieldComponent = self::FIELD_VARIABLE_COMPONENT;
$field->validate = function ($value) use ($InPageApp, $field) {
if (!empty($InPageApp->getValue()) && empty($value)) {
throw new \Exception('You need to specify a Parent Selector if you want to use a InPageApp');
}
};
})
);
}
}