Commit realizado el 12:13:52 08-04-2024

This commit is contained in:
Pagina Web Monito
2024-04-08 12:13:55 -04:00
commit 0c33094de9
7815 changed files with 1365694 additions and 0 deletions

View File

@@ -0,0 +1,42 @@
<?php
/**
* Bulk Edit Tags on forms overview page.
*
* @since 1.7.5
*
* @var int $columns Columns count.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<tr class="wpforms-bulk-edit-tags wpforms-row-form wpforms-hidden">
<td colspan="<?php echo absint( $columns ); ?>">
<div class="wpforms-fbox">
<div class="wpforms-edit-forms">
<select multiple size="6"></select>
</div>
<div class="wpforms-edit-tags">
<select multiple size="1"></select>
</div>
</div>
</td>
</tr>
<tr class="wpforms-bulk-edit-tags wpforms-row-buttons wpforms-hidden">
<td colspan="<?php echo absint( $columns ); ?>">
<button type="button" class="button wpforms-bulk-edit-tags-cancel">
<?php esc_html_e( 'Cancel', 'wpforms-lite' ); ?>
</button>
<button type="button" class="button button-primary wpforms-bulk-edit-tags-save">
<i class="wpforms-loading-spinner wpforms-loading-white wpforms-loading-inline wpforms-hidden"></i>
<?php esc_html_e( 'Update', 'wpforms-lite' ); ?>
</button>
</td>
</tr>
<tr class="wpforms-bulk-edit-tags wpforms-row-message wpforms-hidden">
<td colspan="<?php echo absint( $columns ); ?>">
<div class="wpforms-message"></div>
</td>
</tr>

View File

@@ -0,0 +1,27 @@
<?php
/**
* Search box on forms overview page.
*
* @since 1.7.2
*
* @var string $term_input_id Term input id.
* @var string $text Button text.
* @var string $search_term Current search term.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<p class="search-box wpforms-forms-search-box">
<label class="screen-reader-text" for="<?php echo esc_attr( $term_input_id ); ?>"><?php echo esc_html( $text ); ?>:</label>
<input type="search"
name="search[term]"
class="wpforms-forms-search-box-term"
value="<?php echo esc_attr( $search_term ); ?>"
id="<?php echo esc_attr( $term_input_id ); ?>">
<button type="submit" class="button"><?php echo esc_html( $text ); ?></button>
</p>

View File

@@ -0,0 +1,26 @@
<?php
/**
* Search reset block on forms overview page.
*
* @since 1.7.2
*
* @var string $message Message to display inside the Search reset block.
*/
if ( ! defined( 'ABSPATH' ) ) {
exit;
}
?>
<div id="wpforms-reset-filter">
<?php
echo wp_kses(
$message,
[
'strong' => [],
'em' => [],
]
);
?>
<i class="reset fa fa-times-circle" title="<?php esc_html_e( 'Clear search and return to All Forms', 'wpforms-lite' ); ?>"></i>
</div>