Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/classes/elements/class-tcb-social-share-button-element.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- WordPress core y plugins
- Tema Twenty Twenty-Four configurado
- Plugin allow-unfiltered-html.php simplificado
- .gitignore configurado para excluir wp-config.php y uploads

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude <noreply@anthropic.com>
2025-11-03 21:04:30 -06:00

128 lines
2.6 KiB
PHP
Executable File

<?php
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/**
* Class TCB_Social_Follow_Item_Element
*/
class TCB_Social_Share_Button_Element extends TCB_Element_Abstract {
/**
* Name of the element
*
* @return string
*/
public function name() {
return __( 'Social Share Button', 'thrive-cb' );
}
/**
* Default element identifier
*
* @return string
*/
public function identifier() {
return '.thrv_social .tve_s_item';
}
/**
* Either to display or not the element in the sidebar menu
*
* @return bool
*/
public function hide() {
return true;
}
/**
* @return bool
*/
public function has_hover_state() {
return true;
}
/**
* Component and control config
*
* @return array
*/
public function own_components() {
$typography_defaults = [
'css_prefix' => '',
'css_suffix' => '',
'important' => true,
];
$color_typography = [
'css_suffix' => ' a.tve_s_link .tve_s_text',
'important' => true,
];
return array(
'social_share_button' => array(
'config' => array(
'NetworkColor' => array(
'config' => array(
'label' => __( 'Network Color', 'thrive-cb' ),
),
'extends' => 'ColorPicker',
),
),
),
'typography' => [
'css_prefix' => '.tve_s_text ',
'config' => [
'FontSize' => $typography_defaults,
'FontColor' => $color_typography,
'LineHeight' => $typography_defaults,
'FontFace' => $typography_defaults,
'TextStyle' => $typography_defaults,
'LetterSpacing' => $typography_defaults,
'TextTransform' => $typography_defaults,
'TextAlign' => $typography_defaults,
],
],
'styles-templates' => [ 'hidden' => true ],
'shadow' => [
'config' => [
'css_suffix' => '',
'important' => true,
],
],
'background' => array(
'config' => array(
'ColorPicker' => array( 'css_prefix' => tcb_selection_root() . ' .tve_social_items ' ),
'PreviewList' => array( 'css_prefix' => tcb_selection_root() . ' .tve_social_items ' ),
),
),
'borders' => [
'config' => [
'Borders' => [
'important' => true,
],
'Corners' => [
'important' => true,
],
],
],
'borders' => [
'config' => [
'Borders' => [
'important' => true,
],
'Corners' => [
'important' => true,
],
],
],
'animation' => [
'disabled_controls' => [ '.btn-inline.anim-link', '.btn-inline.anim-popup' ],
],
'layout' => [
'disabled_controls' => [ 'Alignment', 'Display' ],
],
);
}
}