Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/classes/elements/class-tcb-logo-element.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

130 lines
2.7 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/**
* Class TCB_Logo_Element
*/
class TCB_Logo_Element extends TCB_Image_Element {
/**
* @return string
*/
public function name() {
return __( 'Logo', 'thrive-cb' );
}
/**
* @return string
*/
public function icon() {
return 'logo';
}
/**
* @return string
*/
public function identifier() {
return '.' . TCB_Logo::IDENTIFIER;
}
/**
* @return string
*/
public function html() {
/* by default, when added to the page, the logo has id = 0 ( which is the first default placeholder ) */
return TCB_Logo::render_logo( [ 'data-id-d' => 0 ] );
}
/**
* Inherit all the controls from the Image Element, then remove what we don't need and add our own.
*
* @return array
*/
public function own_components() {
$components = parent::own_components();
unset( $components['image'] );
unset( $components['image-effects'] );
/* remove hyperlink */
$components['animation'] = [ 'hidden' => true ];
/* add the logo control */
$components[ TCB_Logo::COMPONENT ] = array(
'config' => array(
'ImageSize' => array(
'config' => array(
'default' => '240',
'min' => '20',
'max' => '1024',
'label' => __( 'Size', 'thrive-cb' ),
'um' => [ 'px', '%' ],
'css' => 'width',
'important' => true,
),
'extends' => 'ImageSize',
),
'MenuSplitLogoPosition' => array(
'config' => array(
'full-width' => true,
'name' => __( 'Position when menu is Hamburger', 'thrive-cb' ),
'buttons' => array(
array(
'text' => __( 'Left', 'thrive-cb' ),
'value' => 'left',
),
array(
'text' => __( 'Right', 'thrive-cb' ),
'value' => 'right',
),
),
),
'extends' => 'ButtonGroup',
),
'ImageLoading' => array(
'config' => array(
'name' => '',
'label' => __( 'Lazy-load image', 'thrive-cb' ),
'default' => true,
),
'extends' => 'Switch',
),
'ImageAltText' => array(
'config' => array(
'label' => __( 'Alt Text', 'thrive-cb' ),
),
'extends' => 'LabelInput',
),
),
'disabled_controls' => [
'Overflow',
'ScrollStyle',
],
);
return $components;
}
/**
* Element info
*
* @return string|string[][]
*/
public function info() {
return [
'instructions' => [
'type' => 'help',
'url' => 'logo',
'link' => 'https://help.thrivethemes.com/en/articles/4425848-how-to-use-the-logo-element',
],
];
}
}