Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- /**
- *
- * @ This file is created by http://DeZender.Net
- * @ deZender (PHP7 Decoder for ionCube Encoder)
- *
- * @ Version : 4.1.0.1
- * @ Author : DeZender
- * @ Release on : 29.08.2020
- * @ Official site : http://DeZender.Net
- *
- */
- define('_CHECK_X_ME', true);
- require dirname(__FILE__) . '/load2.php';
- define('admin_path', $config['base_url']);
- $intro->auth->flag = 'admin';
- if ($intro->auth->auth_admin()) {
- $_ADMIN = $intro->auth->admin_data();
- $sess_admin = $intro->auth->sess_admin();
- if ($sess_admin['level'] == 1) {
- $intro->db->halt_on_errors = true;
- }
- $file = 'apps/' . $intro->app . '.php';
- if (file_exists($file)) {
- include $file;
- }
- else {
- exit('not found');
- }
- $app_class = $intro->app . '_appadmin';
- $app_class = ucfirst($app_class);
- $class = new $app_class($intro->app, $config['base_url'] . 'index.php/' . $intro->app, NULL);
- if ($intro->input->get_post('NH') != 1) {
- include 'header.php';
- }
- $act = str_replace('.php', '', $intro->act);
- if (method_exists($class, $act)) {
- $class->$act();
- }
- else {
- echo '<h3>404 page not found: ' . $intro->app . '/' . $act . ') </h3>';
- }
- if ($intro->input->get_post('NH') != 1) {
- ................................................................................
- .................................................
- ........................
Add Comment
Please, Sign In to add comment