- 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>
105 lines
2.4 KiB
PHP
Executable File
105 lines
2.4 KiB
PHP
Executable File
<?php
|
|
|
|
require_once plugin_dir_path( __FILE__ ) . 'class-tcb-image-element.php';
|
|
|
|
/**
|
|
* Class TCB_Label_Disabled_Element
|
|
*
|
|
* Non edited label element. For inline text we use typography control
|
|
*/
|
|
class TCB_Tab_Image_Element extends TCB_Image_Element {
|
|
|
|
/**
|
|
* Name of the element
|
|
*
|
|
* @return string
|
|
*/
|
|
public function name() {
|
|
return __( 'Tab Item Image', 'thrive-cb' );
|
|
}
|
|
|
|
/**
|
|
* Section element identifier
|
|
*
|
|
* @return string
|
|
*/
|
|
public function identifier() {
|
|
return '.tve-tab-image';
|
|
}
|
|
|
|
/**
|
|
* There is no need for HTML for this element since we need it only for control filter
|
|
*
|
|
* @return string
|
|
*/
|
|
protected function html() {
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* Hidden element
|
|
*
|
|
* @return string
|
|
*/
|
|
public function hide() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Component and control config
|
|
*
|
|
* @return array
|
|
*/
|
|
public function general_components() {
|
|
$components = parent::general_components();
|
|
$image_components = parent::own_components();
|
|
unset(
|
|
$components['background'],
|
|
$components['typography'],
|
|
$components['animation'],
|
|
$components['scroll'],
|
|
$components['responsive'],
|
|
$components['styles-templates']
|
|
);
|
|
$components['layout']['disabled_controls'] = [
|
|
'Width',
|
|
'Height',
|
|
'.tve-advanced-controls',
|
|
'Display',
|
|
'Alignment',
|
|
'padding',
|
|
];
|
|
$components['shadow']['config']['disabled_controls'] = [ 'text' ];
|
|
$components['tab_image']['config'] = array(
|
|
'ImagePicker' => array(
|
|
'config' => array(
|
|
'label' => __( 'Replace Image', 'thrive-cb' ),
|
|
),
|
|
),
|
|
'Height' => array(
|
|
'config' => array(
|
|
'default' => 'auto',
|
|
'min' => '20',
|
|
'max' => '200',
|
|
'label' => __( 'Size (height)', 'thrive-cb' ),
|
|
'um' => [ 'px' ],
|
|
'css' => 'width',
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
);
|
|
|
|
$components['image-effects'] = $image_components['image-effects'];
|
|
$components['image-effects']['config']['css_suffix'] = ':not(.tcb-elem-placeholder)';
|
|
$components['image-effects']['config']['ImageOverlaySwitch']['strategy'] = 'pseudo-element';
|
|
$components['image-effects']['config']['ImageOverlaySwitch']['css_suffix'] = ':not(.tcb-elem-placeholder)::after';
|
|
$components['image-effects']['config']['ImageOverlay']['css_suffix'] = ':not(.tcb-elem-placeholder)::after';
|
|
|
|
return $components;
|
|
}
|
|
|
|
public function own_components() {
|
|
return [];
|
|
}
|
|
}
|