- 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>
121 lines
2.4 KiB
PHP
Executable File
121 lines
2.4 KiB
PHP
Executable File
<?php
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
/**
|
|
* Class TCB_Search_Form_Submit_Element
|
|
*/
|
|
class TCB_Search_Form_Submit_Element extends TCB_Element_Abstract {
|
|
/**
|
|
* Name of the element
|
|
*
|
|
* @return string
|
|
*/
|
|
public function name() {
|
|
return __( 'Search Submit', 'thrive-cb' );
|
|
}
|
|
|
|
/**
|
|
* Section element identifier
|
|
*
|
|
* @return string
|
|
*/
|
|
public function identifier() {
|
|
return '.thrv-sf-submit';
|
|
}
|
|
|
|
/**
|
|
* There is no need for HTML for this element since we need it only for control filter
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function html() {
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Hide Element From Sidebar Menu
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hide() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Whether or not the this element can be edited while under :hover state
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function has_hover_state() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Component and control configuration
|
|
*
|
|
* @return array
|
|
*/
|
|
public function own_components() {
|
|
$prefix = tcb_selection_root( false ) . ' ';
|
|
|
|
$controls_default_config = [
|
|
'css_suffix' => ' button',
|
|
'css_prefix' => $prefix,
|
|
];
|
|
|
|
return [
|
|
'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',
|
|
'Display',
|
|
'margin',
|
|
'.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' => [
|
|
'hidden' => true,
|
|
],
|
|
];
|
|
}
|
|
}
|