Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/classes/elements/class-tcb-dynamic-dropdown-option-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

102 lines
1.9 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package TCB2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden
}
class TCB_Dynamic_Dropdown_Option_Element extends TCB_Element_Abstract {
public function name() {
return __( 'Dropdown Field Option', 'thrive-cb' );
}
public function identifier() {
return '.tve-dynamic-dropdown-option';
}
public function hide() {
return true;
}
/**
* @return bool
*/
public function has_hover_state() {
return true;
}
/**
* @inheritDoc
*/
public function active_state_config() {
return true;
}
public function own_components() {
$prefix_config = tcb_selection_root() . ' ';
$suffix = ' .tve-input-option-text';
return [
'typography' => [
'config' => [
'FontColor' => [
'css_suffix' => $suffix,
'important' => true,
],
'TextAlign' => [
'css_suffix' => $suffix,
'css_prefix' => $prefix_config,
'important' => true,
],
'FontSize' => [
'css_suffix' => $suffix,
'important' => true,
],
'TextStyle' => [
'css_suffix' => $suffix,
'css_prefix' => $prefix_config,
'important' => true,
],
'LineHeight' => [
'css_suffix' => $suffix,
'important' => true,
],
'FontFace' => [
'css_suffix' => $suffix,
'important' => true,
],
'LetterSpacing' => [
'css_suffix' => $suffix,
'css_prefix' => $prefix_config,
'important' => true,
],
'TextTransform' => [
'css_suffix' => $suffix,
'css_prefix' => $prefix_config,
'important' => true,
],
],
],
'layout' => [
'disabled_controls' => [
'margin',
'.tve-advanced-controls',
'Alignment',
'Display',
],
],
'animation' => [
'hidden' => true,
],
'styles-templates' => [ 'hidden' => true ],
'responsive' => [ 'hidden' => true ],
];
}
}