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

32 lines
1.2 KiB
PHTML
Executable File

<div class="thrive-colors-palette-config" style="display: none !important"><#=colorConfig#></div>
<div class="thrive-shortcode-config" style="display:none"><#=shortcode.getHTML(config)#></div>
<div class="thrive-shortcode-html tve-custom-menu-type thrive-shortcode-html-editable tve_clearfix">
<a class="tve-m-trigger" href="#">
<# if( isMenuSwitch ){ #>
<#= $triggerHtml #>
<# } else { #>
<div class="thrv_wrapper thrv_icon tcb-icon-open"><#=trigger_icon.open#></div>
<div class="thrv_wrapper thrv_icon tcb-icon-close"><#=trigger_icon.close#></div>
<# } #>
</a>
<# const hasExtraContent = hamburgerExtraContent.before.trim().length > 0 || hamburgerExtraContent.after.trim().length > 0 #>
<# if(hasExtraContent) { #>
<div class="tve-ham-wrap">
<#= hamburgerExtraContent.before #>
<# } #>
<ul id="<#=config.uuid#>" class="tve_w_menu <#= dir #>">
<#_.each(items, function( item ) {#>
<#=item_template( {item:item,config:config,item_template:item_template,dropdown_icon:dropdown_icon,level:0,type:type,menuDescriptions:menuDescriptions} )#>
<#} ) #>
</ul>
<# if(hasExtraContent) { #>
<#= hamburgerExtraContent.after #>
</div>
<# } #>
<div class="tcb-menu-overlay"></div>
</div>