| 1 |
<?php |
| 2 |
|
| 3 |
if ( ! defined( 'ABSPATH' ) ) { |
| 4 |
exit; // Exit if accessed directly |
| 5 |
} |
| 6 |
|
| 7 |
?> |
| 8 |
|
| 9 |
<div id="merchant-ai-prompts-modal" class="merchant-ai-prompts-modal-overlay"> |
| 10 |
<div class="merchant-ai-prompts-modal-box"> |
| 11 |
|
| 12 |
<button type="button" class="merchant-ai-prompts-modal-close" aria-label="<?php esc_attr_e( 'Close', 'merchant' ); ?>"> |
| 13 |
<svg width="14" height="14" viewBox="0 0 14 14" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 14 |
<path d="M1 1L13 13M13 1L1 13" stroke="currentColor" stroke-width="1.6" stroke-linecap="round"/> |
| 15 |
</svg> |
| 16 |
</button> |
| 17 |
|
| 18 |
<div class="merchant-ai-prompts-modal-header"> |
| 19 |
|
| 20 |
<h3 class="merchant-ai-prompts-modal-title"> |
| 21 |
<span class="merchant-ai-prompts-modal-title-text"></span> |
| 22 |
<span class="merchant-ai-prompts-modal-badge"> |
| 23 |
<svg width="14" height="14" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg"> |
| 24 |
<path d="M8 1L10.5 5.5L15 8L10.5 10.5L8 15L5.5 10.5L1 8L5.5 5.5Z" fill="currentColor"/> |
| 25 |
</svg> |
| 26 |
<?php esc_html_e( 'AI', 'merchant' ); ?> |
| 27 |
</span> |
| 28 |
</h3> |
| 29 |
<p class="merchant-ai-prompts-modal-blurb"></p> |
| 30 |
|
| 31 |
</div> |
| 32 |
|
| 33 |
<div class="merchant-ai-prompts-modal-body"> |
| 34 |
|
| 35 |
<h4 class="merchant-ai-prompts-modal-list-title"><?php esc_html_e( 'Prompt Examples', 'merchant' ); ?></h4> |
| 36 |
|
| 37 |
<div class="merchant-ai-prompts-modal-list"></div> |
| 38 |
|
| 39 |
</div> |
| 40 |
|
| 41 |
<div class="merchant-ai-prompts-modal-footer"> |
| 42 |
<a href="<?php echo esc_url( add_query_arg( array( 'page' => 'merchant', 'section' => 'settings' ), 'admin.php' ) ); ?>"> |
| 43 |
<?php esc_html_e( 'Manage your AI connection', 'merchant' ); ?> |
| 44 |
</a> |
| 45 |
</div> |
| 46 |
|
| 47 |
</div> |
| 48 |
</div> |
| 49 |
|