Linux cesa-www-main 6.1.0-49-cloud-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.174-1 (2026-05-26) x86_64
Apache/2.4.68 (Debian)
Server IP : 10.218.0.2 & Your IP : 216.73.216.28
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
cesa.co.za /
wp-content /
plugins /
e2pdf /
Delete
Unzip
Name
Size
Permission
Date
Action
assets
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
classes
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
css
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
data
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
img
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
js
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
languages
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
vendors
[ DIR ]
drwxr-sr-x
2026-07-20 12:47
e2pdf.php
2.84
KB
-rw-r--r--
2026-07-20 12:47
readme.txt
17.11
KB
-rw-r--r--
2026-07-20 12:47
Save
Rename
<?php /* Plugin Name: E2Pdf Plugin URI: https://e2pdf.com Description: Export PDF tool Version: 1.32.40 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();