fictioneer/partials/_modal-bbcodes.php

38 lines
1.3 KiB
PHP
Raw Permalink Normal View History

2023-01-21 01:31:34 +01:00
<?php
/**
* Partial: BBCodes Modal
*
* @package WordPress
* @subpackage Fictioneer
* @since 4.0.0
2023-01-21 01:31:34 +01:00
*/
// No direct access!
defined( 'ABSPATH' ) OR exit;
?>
2024-12-06 17:38:32 +01:00
<div id="bbcodes-modal" class="bbcodes modal" data-fictioneer-target="modal" data-action="click->fictioneer#backgroundCloseModals keydown.esc@document->fictioneer#closeModals" data-nosnippet hidden>
2023-01-21 01:31:34 +01:00
<div class="modal__wrapper">
2024-12-06 17:38:32 +01:00
<button class="close" aria-label="<?php esc_attr_e( 'Close modal', 'fictioneer' ); ?>" data-action="click->fictioneer#closeModals"><?php fictioneer_icon( 'fa-xmark' ); ?></button>
2024-03-14 00:33:00 +01:00
<div class="modal__header drag-anchor"><?php echo fcntr( 'bbcodes_modal' ); ?></div>
2023-01-21 01:31:34 +01:00
2024-10-01 21:47:11 +02:00
<div class="modal__row modal__description _bbcodes _small-top">
2023-01-21 01:31:34 +01:00
<div><?php echo fcntr( 'bbcode_b' ); ?></div>
<div><?php echo fcntr( 'bbcode_i' ); ?></div>
<div><?php echo fcntr( 'bbcode_s' ); ?></div>
<div><?php echo fcntr( 'bbcode_li' ); ?></div>
<div><?php printf( fcntr( 'bbcode_img' ), '' ); ?></div>
2023-01-21 01:31:34 +01:00
<div><?php echo fcntr( 'bbcode_link' ); ?></div>
<div><?php echo fcntr( 'bbcode_link_name' ); ?></div>
2023-02-16 22:40:11 +01:00
<?php echo fcntr( 'bbcode_quote' ); ?>
2023-01-21 01:31:34 +01:00
<div><?php echo fcntr( 'bbcode_spoiler' ); ?></div>
<div><?php echo fcntr( 'bbcode_ins' ); ?></div>
<div><?php echo fcntr( 'bbcode_del' ); ?></div>
</div>
</div>
</div>