- 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>
158 lines
3.5 KiB
PHP
Executable File
158 lines
3.5 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Created by PhpStorm.
|
|
* User: Ovidiu
|
|
* Date: 10/15/2018
|
|
* Time: 4:05 PM
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden
|
|
}
|
|
|
|
class TCB_Form_Submit_Element extends TCB_Element_Abstract {
|
|
|
|
public function name() {
|
|
return __( 'Form Submit', 'thrive-cb' );
|
|
}
|
|
|
|
public function identifier() {
|
|
return '.tve-form-submit';
|
|
}
|
|
|
|
public function has_hover_state() {
|
|
return true;
|
|
}
|
|
|
|
public function hide() {
|
|
return true;
|
|
}
|
|
|
|
public function own_components() {
|
|
$prefix_config = tcb_selection_root();
|
|
$controls_default_config = [
|
|
'css_suffix' => ' button',
|
|
'css_prefix' => $prefix_config . ' ',
|
|
];
|
|
|
|
return array(
|
|
'form_submit' => array(
|
|
'config' => array(
|
|
'ModalPicker' => array(
|
|
'config' => array(
|
|
'label' => __( 'Add Icon', 'thrive-cb' ),
|
|
),
|
|
),
|
|
'icon_side' => array(
|
|
'css_suffix' => ' .thrv_icon',
|
|
'css_prefix' => $prefix_config . ' ',
|
|
'config' => array(
|
|
'name' => __( 'Icon Side', 'thrive-cb' ),
|
|
'buttons' => array(
|
|
array(
|
|
'value' => 'left',
|
|
'text' => __( 'Left', 'thrive-cb' ),
|
|
),
|
|
array(
|
|
'value' => 'right',
|
|
'text' => __( 'Right', 'thrive-cb' ),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
'ButtonWidth' => array(
|
|
'css_prefix' => $prefix_config . ' ',
|
|
'config' => array(
|
|
'default' => '100',
|
|
'min' => '10',
|
|
'max' => '100',
|
|
'label' => __( 'Button width', 'thrive-cb' ),
|
|
'um' => [ '%' ],
|
|
'css' => 'width',
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
'ButtonAlign' => array(
|
|
'config' => array(
|
|
'name' => __( 'Button Align', 'thrive-cb' ),
|
|
'buttons' => [
|
|
[
|
|
'icon' => 'a_left',
|
|
'text' => '',
|
|
'value' => 'left',
|
|
'default' => true,
|
|
],
|
|
[
|
|
'icon' => 'a_center',
|
|
'text' => '',
|
|
'value' => 'center',
|
|
],
|
|
[
|
|
'icon' => 'a_right',
|
|
'text' => '',
|
|
'value' => 'right',
|
|
],
|
|
[
|
|
'icon' => 'a_full-width',
|
|
'text' => '',
|
|
'value' => 'justify',
|
|
],
|
|
],
|
|
),
|
|
'extends' => 'ButtonGroup',
|
|
),
|
|
),
|
|
),
|
|
'typography' => [
|
|
'config' => [
|
|
'FontSize' => $controls_default_config,
|
|
'FontColor' => $controls_default_config,
|
|
'TextAlign' => $controls_default_config,
|
|
'TextStyle' => $controls_default_config,
|
|
'TextTransform' => $controls_default_config,
|
|
'FontFace' => $controls_default_config,
|
|
'LineHeight' => $controls_default_config,
|
|
'LetterSpacing' => $controls_default_config,
|
|
],
|
|
],
|
|
'layout' => [
|
|
'disabled_controls' => [
|
|
'Width',
|
|
'Height',
|
|
'Alignment',
|
|
'.tve-advanced-controls',
|
|
],
|
|
'config' => [
|
|
'MarginAndPadding' => $controls_default_config,
|
|
],
|
|
],
|
|
'borders' => [
|
|
'config' => [
|
|
'Borders' => $controls_default_config,
|
|
'Corners' => $controls_default_config,
|
|
],
|
|
],
|
|
'animation' => [
|
|
'hidden' => true,
|
|
],
|
|
'responsive' => [
|
|
'hidden' => true,
|
|
],
|
|
'background' => [
|
|
'config' => [
|
|
'ColorPicker' => $controls_default_config,
|
|
'PreviewList' => $controls_default_config,
|
|
],
|
|
],
|
|
'shadow' => [
|
|
'config' => $controls_default_config,
|
|
],
|
|
'styles-templates' => [
|
|
'config' => [
|
|
'to' => 'button',
|
|
],
|
|
],
|
|
);
|
|
}
|
|
}
|