File "draw_attribute_list_btn.php"

Full Path: /home/vantageo/public_html/cache/cache/cache/cache/cache/cache/.wp-cli/wp-content/plugins/woo-bulk-editor/views/elements/draw_attribute_list_btn.php
File size: 585 bytes
MIME-type: text/x-php
Charset: utf-8

<?php
if (!defined('ABSPATH')) {
    exit; // Exit if accessed directly
}

//global $WOOBE;
?>
<div class="popup_val_in_tbl woobe-button" onclick="woobe_multi_select_cell(this)">
    <ul>
        <?php if (!empty($selected_terms_ids)): ?>
            <?php foreach ($selected_terms_ids as $k => $term_id): ?>
                <li class="woobe_li_tag"><?php echo $terms[$term_id] ?></li>
            <?php endforeach; ?>
        <?php else: ?>
            <li class="woobe_li_tag"><?php echo esc_html__('no items', 'woo-bulk-editor') ?></li>
            <?php endif; ?>
    </ul>
</div>