| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374 |
- <?php
- /**
- * Category Manipulations tab partial: Batch description between categories.
- *
- * @package Studiou_WC_Product_Cat_Manage
- *
- * @var Studiou_WC_Product_Cat_Manage_Manipulator $manipulator
- */
- // If this file is called directly, abort.
- if (!defined('WPINC')) {
- die;
- }
- $categories = $manipulator->get_categories_with_counts();
- ?>
- <!-- Batch Description Between Categories Operation -->
- <div class="studiou-wcpcm-card">
- <h2><?php echo esc_html__('Batch description between categories', 'studiou-wc-product-cat-manage'); ?></h2>
- <p><?php echo esc_html__('This operation allows you to set the same description for multiple categories at once.', 'studiou-wc-product-cat-manage'); ?></p>
- <form id="studiou-wcpcm-batch-description-form" method="post">
- <table class="form-table">
- <tr>
- <th scope="row">
- <label for="categories_list"><?php echo esc_html__('Select Categories', 'studiou-wc-product-cat-manage'); ?></label>
- </th>
- <td>
- <div class="studiou-wcpcm-categories-list-container">
- <div class="studiou-wcpcm-list-actions">
- <button type="button" id="studiou-wcpcm-check-all" class="button">
- <?php echo esc_html__('Check All', 'studiou-wc-product-cat-manage'); ?>
- </button>
- <button type="button" id="studiou-wcpcm-uncheck-all" class="button">
- <?php echo esc_html__('Uncheck All', 'studiou-wc-product-cat-manage'); ?>
- </button>
- </div>
- <div class="studiou-wcpcm-categories-list" id="categories_list">
- <?php foreach ($categories as $category): ?>
- <label class="studiou-wcpcm-category-item">
- <input type="checkbox" name="selected_categories[]" value="<?php echo esc_attr($category['id']); ?>">
- <span><?php echo esc_html($category['display_name']); ?></span>
- </label>
- <?php endforeach; ?>
- </div>
- </div>
- <p class="description"><?php echo esc_html__('Select the categories for which you want to set the description.', 'studiou-wc-product-cat-manage'); ?></p>
- </td>
- </tr>
- <tr>
- <th scope="row">
- <label for="category_description"><?php echo esc_html__('Product categories description', 'studiou-wc-product-cat-manage'); ?></label>
- </th>
- <td>
- <textarea name="category_description" id="category_description" rows="5" cols="50" class="large-text"></textarea>
- <p class="description"><?php echo esc_html__('Enter the description that will be applied to all selected categories.', 'studiou-wc-product-cat-manage'); ?></p>
- </td>
- </tr>
- </table>
- <div class="submit-buttons">
- <button type="submit" class="button button-primary" id="studiou-wcpcm-batch-description-button">
- <?php echo esc_html__('Do', 'studiou-wc-product-cat-manage'); ?>
- </button>
- <span class="spinner"></span>
- </div>
- </form>
- <div class="studiou-wcpcm-batch-description-results" style="display: none;">
- <h3><?php echo esc_html__('Batch Description Results', 'studiou-wc-product-cat-manage'); ?></h3>
- <div id="studiou-wcpcm-batch-description-message"></div>
- </div>
- </div>
|