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

E2Pdf – Export Pdf Tool for WordPress, version 1.08.06. 17 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.08.06/code/classes/view/blocks/bulk-actions.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.08.06/raw/classes/view/blocks/bulk-actions.php
- Modified: 2019-07-26T18:15:18+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.08.06/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 $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 $key; ?>"><?php _e($value, 'e2pdf'); ?></option>
        <?php } ?>
    </select>
    <input type="submit" id="<?php echo $this->tpl_args->get('id'); ?>" class="button action" value="<?php _e('Apply', 'e2pdf'); ?>">
</div>


```
