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

54 lines
742 B
PHP
Executable File

<?php
/**
* Created by PhpStorm.
* User: Ovidiu
* Date: 11/6/2017
* Time: 5:27 PM
*/
if ( ! defined( 'ABSPATH' ) ) {
exit; // Silence is golden!
}
class TCB_Progress_Label_Element extends TCB_Label_Advanced_Element {
/**
* Section element identifier
*
* @return string
*/
public function identifier() {
return '.tve-progress-label';
}
/**
* @inheritDoc
*/
public function expanded_state_config() {
return true;
}
/**
* @return bool
*/
public function has_hover_state() {
return true;
}
/**
* @inheritDoc
*/
public function expanded_state_apply_inline() {
return true;
}
/**
*
* @inheritDoc
*/
public function expanded_state_label() {
return __( 'Completed', 'thrive-cb' );
}
}