Files
roi-theme/wp-content/plugins/thrive-visual-editor/inc/backbone/controls/textarea.phtml
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

10 lines
633 B
PHTML
Executable File

<div class="control-grid wrap left-align">
<div class="mb-10">
<span class="mr-5"><#= this.model.config.label #></span>
<# if ( this.get_config('info') ) { #>
<span class="click tve-switch-info" data-fn="openTooltip"><?php tcb_icon( 'info-circle-solid' ); ?></span>
<# } #>
</div>
<textarea cols="<#= this.get_config('cols', 40) #>" rows="<#= this.get_config('rows', 5) #>"
placeholder="<#= this.get_config('placeholder') #>" class="tcb-scroll fill tve-input-control <#= this.get_config('keyup_listener')? 'keyup': '' #> change" data-fn-keyup="keyup" data-fn="changed" <#= this.get_config('extra_attrs', '') #>/>
</div>