- 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>
153 lines
2.8 KiB
PHP
Executable File
153 lines
2.8 KiB
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-visual-editor
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden!
|
|
}
|
|
|
|
/**
|
|
* Class TCB_Column_Element
|
|
*/
|
|
class TCB_Column_Element extends TCB_Element_Abstract {
|
|
|
|
/**
|
|
* Not directly available from the menu
|
|
*
|
|
* @return bool
|
|
*/
|
|
public function hide() {
|
|
return true;
|
|
}
|
|
|
|
/**
|
|
* Name of the element
|
|
*
|
|
* @return string
|
|
*/
|
|
public function name() {
|
|
return __( 'Column', 'thrive-cb' );
|
|
}
|
|
|
|
/**
|
|
* Return icon class needed for display in menu
|
|
*
|
|
* @return string
|
|
*/
|
|
public function icon() {
|
|
return 'column';
|
|
}
|
|
|
|
/**
|
|
* Text element identifier
|
|
*
|
|
* @return string
|
|
*/
|
|
public function identifier() {
|
|
return 'div.tcb-col';
|
|
}
|
|
|
|
/**
|
|
* @return string
|
|
*/
|
|
protected function html() {
|
|
return '';
|
|
}
|
|
|
|
/**
|
|
* @return array
|
|
*/
|
|
public function own_components() {
|
|
return array(
|
|
'column' => array(
|
|
'config' => array(
|
|
'VerticalPosition' => array(
|
|
'config' => array(
|
|
'name' => __( 'Vertical position', 'thrive-cb' ),
|
|
'important' => true,
|
|
'buttons' => [
|
|
[
|
|
'icon' => 'none',
|
|
'default' => true,
|
|
'value' => '',
|
|
],
|
|
[
|
|
'icon' => 'top',
|
|
'value' => 'flex-start',
|
|
],
|
|
[
|
|
'icon' => 'vertical',
|
|
'value' => 'center',
|
|
],
|
|
[
|
|
'icon' => 'bot',
|
|
'value' => 'flex-end',
|
|
],
|
|
],
|
|
),
|
|
'extends' => 'ButtonGroup',
|
|
),
|
|
'FixedWidth' => array(
|
|
'config' => array(
|
|
'name' => '',
|
|
'label' => __( 'Enable fixed width', 'thrive-cb' ),
|
|
'default' => true,
|
|
'info' => true,
|
|
),
|
|
'extends' => 'Switch',
|
|
),
|
|
'FullHeight' => array(
|
|
'config' => array(
|
|
'name' => '',
|
|
'label' => __( 'Enable full height', 'thrive-cb' ),
|
|
'default' => true,
|
|
'info' => true,
|
|
),
|
|
'extends' => 'Switch',
|
|
),
|
|
'ColumnWidth' => array(
|
|
'config' => array(
|
|
'default' => '100',
|
|
'min' => '30',
|
|
'max' => '1500',
|
|
'label' => __( 'Width', 'thrive-cb' ),
|
|
'um' => [ 'px', '%', ],
|
|
'um_disabled' => true,
|
|
),
|
|
'extends' => 'Slider',
|
|
),
|
|
),
|
|
),
|
|
'responsive' => [ 'hidden' => true ],
|
|
'styles-templates' => [ 'hidden' => true ],
|
|
'layout' => [
|
|
'disabled_controls' => [
|
|
'.tve-advanced-controls',
|
|
'Width',
|
|
'Height',
|
|
'Alignment',
|
|
'Display',
|
|
],
|
|
],
|
|
'borders' => [
|
|
'config' => [
|
|
'Borders' => [
|
|
'important' => true,
|
|
],
|
|
],
|
|
],
|
|
'conditional-display' => [ 'hidden' => false ],
|
|
);
|
|
}
|
|
|
|
/**
|
|
* @return bool
|
|
*/
|
|
public function has_hover_state() {
|
|
return true;
|
|
}
|
|
}
|