# e2pdf/1.32.26/classes/view/page-e2pdf-integrations.php

E2Pdf – Export Pdf Tool for WordPress, version 1.32.26. 52 lines.

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.26/code/classes/view/page-e2pdf-integrations.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.26/raw/classes/view/page-e2pdf-integrations.php
- Modified: 2026-06-03T09:07:36+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.26/code/classes/view/page-e2pdf-integrations.php#L10-L20`.

```php
<?php
if (!defined('ABSPATH')) {
    die('Access denied.');
}
?>
<div class="wrap">
    <h1><?php _e('Integrations', 'e2pdf'); ?></h1>
    <hr class="wp-header-end">
    <?php $this->render('blocks', 'notifications'); ?>
    <h3 class="nav-tab-wrapper wp-clearfix">
        <?php foreach ($this->view->groups as $group_key => $group) { ?>
            <?php if (isset($group['action']) && isset($group['group'])) { ?>
                <a href="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations', 'action' => $group['action'], 'group' => $group['group']))); ?>" class="nav-tab <?php if ($this->get->get('action') === $group['action'] && $this->get->get('group') === $group['group']) { ?>nav-tab-active<?php } ?>"><?php echo esc_html($group['name']); ?></a>
            <?php } elseif (isset($group['action'])) { ?>
                <a href="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations', 'action' => $group['action']))); ?>" class="nav-tab <?php if ($this->get->get('action') === $group['action']) { ?>nav-tab-active<?php } ?>"><?php echo esc_html($group['name']); ?></a>
            <?php } else { ?>
                <a href="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations'))); ?>" class="nav-tab <?php if (!$this->get->get('action')) { ?>nav-tab-active<?php } ?>"><?php echo esc_html($group['name']); ?></a>
            <?php } ?>
        <?php } ?>
    </h3>
    <div class="wrap">
        <div class="e2pdf-view-area">
            <?php if (isset($group['action']) && isset($group['group'])) { ?>
                <form method="post" action="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations', 'action' => $this->get->get('action'), 'group' => $this->get->get('group')))); ?>">
                <?php } elseif (isset($group['action'])) { ?>
                    <form method="post" action="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations', 'action' => $this->get->get('action')))); ?>">
                    <?php } else { ?>
                        <form method="post" action="<?php echo esc_url($this->helper->get_url(array('page' => 'e2pdf-integrations'))); ?>">
                        <?php } ?>
                        <input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('e2pdf_integrations'); ?>">
                        <ul class="e2pdf-options-list">
                            <?php if (!$this->get->get('action')) { ?>
                                <li>
                                    <div class="e2pdf-name">Zapier App:</div><div class="e2pdf-value">
                                        <a target="_blank" href="https://zapier.com/developer/public-invite/214896/76ba60a93b9a47be4156be6bb77b6ce9/">https://zapier.com/developer/public-invite/214896/76ba60a93b9a47be4156be6bb77b6ce9/</a>
                                    </div>
                                </li>
                            <?php } ?>
                            <?php
                            $this->render('field', 'group', array(
                                'groups' => $this->view->options
                            ));
                            ?>
                        </ul>
                        <?php if ($this->get->get('action')) { ?>
                            <?php submit_button(); ?>
                        <?php } ?>
                    </form>
                    </div>
                    </div>
                    </div>
                    <?php $this->render('blocks', 'debug-panel'); ?>
```
