- 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>
137 lines
3.1 KiB
PHP
Executable File
137 lines
3.1 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package TCB2.0
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden
|
|
}
|
|
|
|
class TCB_Lead_Generation_Checkbox_Element extends TCB_Element_Abstract {
|
|
|
|
public function name() {
|
|
return __( 'Form Checkbox', 'thrive-cb' );
|
|
}
|
|
|
|
public function identifier() {
|
|
return '.tve_lg_checkbox.tve-new-checkbox:not(.tcb-lg-consent):not(.tcb-remember-me)';
|
|
}
|
|
|
|
public function hide() {
|
|
return true;
|
|
}
|
|
|
|
public function own_components() {
|
|
|
|
$components = array(
|
|
'lead_generation_checkbox' => array(
|
|
'config' => array(
|
|
'ShowLabel' => array(
|
|
'config' => array(
|
|
'label' => __( 'Show Label', 'thrive-cb' ),
|
|
),
|
|
'extends' => 'Switch',
|
|
),
|
|
'Required' => array(
|
|
'config' => array(
|
|
'default' => false,
|
|
'label' => __( 'Required field' ),
|
|
'info' => true,
|
|
),
|
|
'extends' => 'Switch',
|
|
),
|
|
'ColumnNumber' => array(
|
|
'to' => '.tve-checkbox-grid',
|
|
'config' => array(
|
|
'default' => '1',
|
|
'min' => '1',
|
|
'max' => '5',
|
|
'limit' => '5',
|
|
'label' => __( 'Columns', 'thrive-cb' ),
|
|
'um' => [],
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
'VerticalSpace' => array(
|
|
'to' => '.tve-checkbox-grid',
|
|
'config' => array(
|
|
'default' => '0',
|
|
'min' => '0',
|
|
'max' => '300',
|
|
'label' => __( 'Vertical Space', 'thrive-cb' ),
|
|
'um' => [ 'px', '%' ],
|
|
'css' => '--v-gutter',
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
'HorizontalSpace' => array(
|
|
'to' => '.tve-checkbox-grid',
|
|
'config' => array(
|
|
'default' => '20',
|
|
'min' => '0',
|
|
'max' => '100',
|
|
'label' => __( 'Horizontal Space', 'thrive-cb' ),
|
|
'um' => [ 'px', '%' ],
|
|
'css' => '--h-gutter',
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
'OptionsList' => array(
|
|
'config' => array(
|
|
'sortable' => true,
|
|
'settings_icon' => 'pen-light',
|
|
'marked' => true,
|
|
'marking_text' => __( 'Set as default', 'thrive-cb' ),
|
|
'marking_icon' => 'check',
|
|
'marked_field' => 'default',
|
|
),
|
|
),
|
|
'AnswerTag' => array(
|
|
'config' => array(
|
|
'default' => false,
|
|
'label' => __( 'Send answer(s) as tag', 'thrive-cb' ),
|
|
'info' => true,
|
|
),
|
|
'extends' => 'Switch',
|
|
),
|
|
),
|
|
),
|
|
'typography' => [
|
|
'hidden' => true,
|
|
],
|
|
'layout' => [
|
|
'disabled_controls' => [
|
|
'Width',
|
|
'Height',
|
|
'Alignment',
|
|
'.tve-advanced-controls',
|
|
'hr',
|
|
],
|
|
'config' => [],
|
|
],
|
|
'borders' => [
|
|
'config' => [],
|
|
],
|
|
'animation' => [
|
|
'hidden' => true,
|
|
],
|
|
'background' => [
|
|
'config' => [],
|
|
],
|
|
'shadow' => [
|
|
'hidden' => true,
|
|
],
|
|
'styles-templates' => [
|
|
'config' => [],
|
|
],
|
|
'responsive' => [
|
|
'hidden' => true,
|
|
],
|
|
);
|
|
|
|
return array_merge( $components, $this->group_component() );
|
|
}
|
|
}
|