# e2pdf/1.32.32/classes/view/blocks/bulk-actions.php

E2Pdf – Export Pdf Tool for WordPress, version 1.32.32. 15 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.32/code/classes/view/blocks/bulk-actions.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.32/raw/classes/view/blocks/bulk-actions.php
- Modified: 2026-06-25T06:38:38+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/e2pdf/1.32.32/code/classes/view/blocks/bulk-actions.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) {
    die('Access denied.');
}
?>
<div class="alignleft actions bulkactions">
    <label for="bulk-action-selector-top" class="screen-reader-text"><?php _e('Select bulk action', 'e2pdf'); ?></label>
    <select name="<?php echo esc_attr($this->tpl_args->get('name')); ?>" id="bulk-action-selector-top">    
        <option value="-1"><?php _e('Bulk Actions', 'e2pdf'); ?></option>
        <?php foreach ($this->tpl_args->get('options') as $key => $value) { ?>
            <option value="<?php echo esc_attr($key); ?>"><?php echo esc_html($value); ?></option>
        <?php } ?>
    </select>
    <input type="submit" id="<?php echo esc_attr($this->tpl_args->get('id')); ?>" class="button action" value="<?php _e('Apply', 'e2pdf'); ?>">
</div>
```
