Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/classes/elements/progress-bar/class-tcb-progressbar-old-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

163 lines
3.4 KiB
PHP
Executable File

<?php
/**
* Thrive Themes - https://thrivethemes.com
*
* @package thrive-visual-editor
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
/**
* Class TCB_Progressbar_Element
*/
class TCB_Progressbar_Old_Element extends TCB_Element_Abstract {
/**
* Name of the element
*
* @return string
*/
public function name() {
return __( 'Progress Bar', 'thrive-cb' );
}
/**
* Get element alternate
*
* @return string
*/
public function alternate() {
return 'progress, fill';
}
/**
* Return icon class needed for display in menu
*
* @return string
*/
public function icon() {
return 'progress_bar';
}
/**
* Section element identifier
*
* @return string
*/
public function identifier() {
return '.thrv_progress_bar, .thrv-progress-bar';
}
public function hide() {
return true;
}
/**
* Component and control config
*
* @return array
*/
public function own_components() {
return array(
'progressbar_old' => array(
'config' => array(
'FillPercent' => array(
'to' => '.tve_progress_bar_fill_wrapper',
'config' => array(
'default' => '20',
'min' => '0',
'max' => '100',
'label' => __( 'Fill Percentage', 'thrive-cb' ),
'um' => [ '%' ],
'css' => 'width',
),
'extends' => 'Slider',
),
'ExternalFields' => [
'config' => [
'key' => 'number',
'shortcode_element' => '.tve_progress_bar_fill_wrapper',
],
'extends' => 'CustomFields',
],
'FillColor' => array(
'to' => '.tve_progress_bar_fill',
'config' => array(
'default' => '000',
'label' => __( 'Fill', 'thrive-cb' ),
'options' => [
'output' => 'object',
],
),
'extends' => 'ColorPicker',
),
'LabelColor' => array(
'to' => '.thrv-inline-text',
'config' => array(
'default' => '000',
'label' => __( 'Label Color', 'thrive-cb' ),
'options' => [
'output' => 'object',
],
),
'extends' => 'ColorPicker',
),
'BackgroundColor' => array(
'to' => '.tve-progress-bar',
'config' => array(
'default' => '000',
'label' => __( 'Background', 'thrive-cb' ),
'options' => [
'output' => 'object',
],
),
'extends' => 'ColorPicker',
),
'InnerLabel' => array(
'config' => array(
'name' => '',
'label' => __( 'Add Inner Label', 'thrive-cb' ),
'default' => true,
),
'to' => '.tve-progress-bar-label',
'extends' => 'Switch',
),
),
),
'shadow' => [
'config' => [
'to' => '.tve-progress-bar',
'disabled_controls' => [ 'inner', 'text' ],
],
],
'borders' => [
'config' => [
'to' => '.tve-progress-bar',
'Borders' => [],
'Corners' => [],
],
],
'typography' => [ 'hidden' => true ],
'background' => [ 'hidden' => true ],
'animation' => [ 'hidden' => true ],
'layout' => [
'disabled_controls' => [
'Overflow',
'ScrollStyle',
],
],
);
}
/**
* Element category that will be displayed in the sidebar
*
* @return string
*/
public function category() {
return static::get_thrive_advanced_label();
}
}