Files
roi-theme/wp-content/plugins/wp-database-tools/admin/partials/components/wp-database-tools-admin-component-bulk-actions-selectors.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

15 lines
730 B
PHP
Executable File

<!-- SELECTION -->
<div class="d-flex-start">
<p class="w-95"><?php echo __( 'Selection', $this->plugin_name ); ?>(<span id="span-selected">0</span>):</p>
<div class="d-flex-center align-items-center btn-selections">
<?php foreach ( $settings_page['bulk_actions'] as $key => $action ) : ?>
<button onclick="showModal(this)" data-label="<?php echo $action['label']; ?>" data-individual="no" data-modal="<?php echo $key; ?>" class="tooltip b-none cursor-pointer bg-none p-0 <?php echo $key; ?>">
<span class="tooltiptext small"><?php echo $action['txt']; ?></span>
<img width="15px" src="<?php echo $settings_page['admin_url'] . 'img/icon-' . $key . '.svg'; ?> ">
</button>
<?php endforeach; ?>
</div>
</div>