Files
roi-theme/wp-content/plugins/fluent-smtp/app/views/admin/general_connection_info.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

29 lines
1.1 KiB
PHP
Executable File

<div class="fss_connection_info">
<table class="wp-list-table widefat striped">
<tr>
<th><?php esc_html_e('Connection Type', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['provider']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Sender Email', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['sender_email']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Sender Name', 'fluent-smtp') ?></th>
<td><?php echo esc_html($connection['sender_name']); ?></td>
</tr>
<tr>
<th><?php esc_html_e('Force Sender Name', 'fluent-smtp') ?></th>
<td><?php echo esc_html(ucfirst($connection['force_from_name'])); ?></td>
</tr>
<?php if(isset($connection['extra_rows'])) : ?>
<?php foreach ($connection['extra_rows'] as $row): ?>
<tr>
<th><?php echo esc_html($row['title']); ?></th>
<td><?php echo wp_kses_post($row['content']); ?></td>
</tr>
<?php endforeach; ?>
<?php endif; ?>
</table>
</div>