Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/classes/elements/lead-generation/class-tcb-lead-generation-input-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

143 lines
3.4 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package TCB2.0
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden
}
class TCB_Lead_Generation_Input_Element extends TCB_Element_Abstract {
public function name() {
return __( 'Lead Generation Input', 'thrive-cb' );
}
public function identifier() {
return '.tve_lg_input';
}
public function hide() {
return true;
}
public function own_components() {
$prefix_config = tcb_selection_root();
$controls_default_config = [
'css_suffix' => [ ' input', ' textarea' ],
'css_prefix' => $prefix_config . ' ',
];
$controls_default_config_text = [
'css_suffix' => [ ' input', ' textarea', ' ::placeholder' ],
'css_prefix' => $prefix_config . ' ',
];
return array(
'lead_generation_input' => array(
'config' => array(
'placeholder' => array(
'config' => array(
'label' => __( 'Placeholder', 'thrive-cb' ),
),
),
'ShowLabel' => array(
'config' => array(
'name' => '',
'label' => __( 'Show Label', 'thrive-cb' ),
'default' => true,
),
'extends' => 'Switch',
),
'icon_side' => array(
'rem_ic_css_suf' => ' input', //Remove Icon Css Suffix
'css_suffix' => ' .thrv_icon',
'config' => array(
'name' => __( 'Icon Side', 'thrive-cb' ),
'buttons' => array(
array(
'value' => 'left',
'text' => __( 'Left', 'thrive-cb' ),
),
array(
'value' => 'right',
'text' => __( 'Right', 'thrive-cb' ),
),
),
),
),
'required' => array(
'config' => array(
'default' => false,
'label' => __( 'Required field' ),
),
'extends' => 'Switch',
),
),
),
'typography' => array(
'config' => array(
'FontSize' => $controls_default_config_text,
'FontColor' => array_merge( [ 'important' => true ], $controls_default_config_text ),
'FontFace' => $controls_default_config_text,
'LetterSpacing' => $controls_default_config_text,
'LineHeight' => $controls_default_config_text,
'TextAlign' => $controls_default_config_text,
'TextStyle' => $controls_default_config_text,
'TextTransform' => $controls_default_config_text,
),
),
'layout' => [
'disabled_controls' => [
'Width',
'Height',
'Alignment',
'.tve-advanced-controls',
'hr',
],
'config' => [
'MarginAndPadding' => [
'margin_suffix' => '',
'padding_suffix' => [ ' input', ' textarea' ],
'css_prefix' => $prefix_config . ' ',
],
],
],
'borders' => [
'config' => [
'Borders' => $controls_default_config,
'Corners' => $controls_default_config,
],
],
'animation' => [
'hidden' => true,
],
'background' => [
'config' => [
'ColorPicker' => $controls_default_config,
'PreviewList' => $controls_default_config,
],
],
'shadow' => array(
'config' => array_merge( $controls_default_config, [ 'default_shadow' => 'none' ] ),
),
'styles-templates' => [
'config' => [
'to' => 'input',
],
],
'responsive' => [
'hidden' => true,
],
);
}
/**
* @return bool
*/
public function has_hover_state() {
return true;
}
}