Initial commit: WordPress wp-content (themes, plugins, languages)

- Theme: momentry (custom theme with REST API routes)
- Plugins: code-snippets (contains all API proxies)
- Languages: zh_TW translations
- Excludes: cache, backups, uploads, logs
This commit is contained in:
OpenCode
2026-05-29 19:07:56 +08:00
commit 09ef1f000f
6521 changed files with 867163 additions and 0 deletions
@@ -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>
@@ -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>
@@ -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>