# e2pdf/1.32.32/e2pdf.php

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

- Page: https://pluginprobe.com/plugins/e2pdf/1.32.32/code/e2pdf.php
- Raw: https://pluginprobe.com/plugins/e2pdf/1.32.32/raw/e2pdf.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/e2pdf.php#L10-L20`.

```php
<?php

/*
  Plugin Name: E2Pdf
  Plugin URI:  https://e2pdf.com
  Description: Export PDF tool
  Version:     1.32.32
  Author:      E2Pdf.com
  Author URI:  https://e2pdf.com/contributors
  Text Domain: e2pdf
  Domain Path: /languages
  License:     GPLv3

  E2Pdf is free software: you can redistribute it and/or modify
  it under the terms of the GNU General Public License as published by
  the Free Software Foundation, either version 3 of the License, or
  any later version.

  E2pdf is distributed in the hope that it will be useful,
  but WITHOUT ANY WARRANTY; without even the implied warranty of
  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  GNU General Public License for more details.

  You should have received a copy of the GNU General Public License
  along with E2pdf. If not, see https://www.gnu.org/licenses/gpl-3.0.html.
 */

if (!defined('ABSPATH')) {
    die('Access denied.');
}

// recoverty mode email
if (get_option('e2pdf_debug', '0') && get_option('e2pdf_recovery_mode_email', '')) {
    if (!defined('RECOVERY_MODE_EMAIL')) {
        define('RECOVERY_MODE_EMAIL', get_option('e2pdf_recovery_mode_email', ''));
    }
}

if (!defined('E2PDF_ROOT_FILE')) {
    define('E2PDF_ROOT_FILE', __FILE__);
}

// autoloader name to filename
function e2pdf_autoloader_convert_name($class_name) {
    $search = [
        '_',
        'Controller-Frontend-',
        'Controller-',
        'Model-',
        'Helper-',
        'Extension-',
        'Api-',
    ];
    $replace = [
        '-',
        '',
        '',
        '',
        '',
        '',
        '',
    ];
    return strtolower(
            str_replace($search, $replace, $class_name)
    );
}

// autoloader
function e2pdf_autoloader($class_name) {
    if (!preg_match('/^(.*?)E2pdf(.*?)$/', $class_name)) {
        return;
    }
    $path = dirname(__FILE__);
    $path .= '/classes';
    if (preg_match('/^Helper.+$/', $class_name)) {
        $path .= '/helper/';
    } elseif (preg_match('/^Controller_Frontend.+$/', $class_name)) {
        $path .= '/controller/frontend/';
    } elseif (preg_match('/^Controller.+$/', $class_name)) {
        $path .= '/controller/';
    } elseif (preg_match('/^Model.+$/', $class_name)) {
        $path .= '/model/';
    } elseif (preg_match('/^View.+$/', $class_name)) {
        $path .= '/view/';
    } elseif (preg_match('/^Extension.+$/', $class_name)) {
        $path .= '/extension/';
    } elseif (preg_match('/^Api.+$/', $class_name)) {
        $path .= '/api/';
    }
    $class_path = e2pdf_autoloader_convert_name($class_name);
    $path .= $class_path . '.php';
    if (file_exists($path)) {
        include $path;
    }
}

if (is_array(spl_autoload_functions()) && in_array('__autoload', spl_autoload_functions(), false)) {
    spl_autoload_register('__autoload');
}
spl_autoload_register('e2pdf_autoloader');

// load
(new Model_E2pdf_Loader())->load();

```
