Advertisement
Guest User

Untitled

a guest
Dec 30th, 2023
273
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.72 KB | None | 0 0
  1. <?php
  2. /**
  3. *
  4. * @ This file is created by http://DeZender.Net
  5. * @ deZender (PHP7 Decoder for ionCube Encoder)
  6. *
  7. * @ Version : 4.1.0.1
  8. * @ Author : DeZender
  9. * @ Release on : 29.08.2020
  10. * @ Official site : http://DeZender.Net
  11. *
  12. */
  13.  
  14. $dir = str_replace('modules/addons/clientx/includes', '', __DIR__);
  15. $files = glob($dir . 'lang/overrides/*.*');
  16. $filePath = $dir . 'lang/overrides/';
  17.  
  18. if (isset($_POST['frmSubFile'])) {
  19. $fileNameGetSave = $filePath . $_GET['filename'] . '.php';
  20. file_put_contents($fileNameGetSave, htmlspecialchars_decode($_POST['filesedit'], ENT_QUOTES));
  21. }
  22.  
  23. echo '<div id="wrapper">' . "\n" . ' <div class="addon_container">' . "\n" . ' <div class="ad_content_area">' . "\n" . ' ';
  24.  
  25. if (file_exists(__DIR__ . '/header.php')) {
  26. require_once __DIR__ . '/header.php';
  27. }
  28.  
  29. echo ' <div class="addon_inner setting_contscolor">' . "\t\t\t\n" . '<div class="setting_cont wgsh3">' . "\n\t" . '<h3 class="head_sec">' . "\n\t\t" . '<label>Advance Language Manager</label>' . "\n\t" . '</h3>' . "\n\t" . '<p><strong>Language manager allows you to edit the languages files in the WHMCS admin, rather than logging into the FTP or Cpanel.</strong></p>' . "\n" . '</div>' . "\n\t" . '<div class="row">' . "\n\t\t" . '<div class="col-md-3 wgs-width-set-3">' . "\t\n\t\t\t" . '<div class="leftbar">' . "\n\t\t\t\t\t";
  30.  
  31. for ($i = 0; $i < count($files); $i++) {
  32. $lang_file_name = basename($files[$i]);
  33. $lang = str_replace('.php', '', $lang_file_name);
  34. echo "\t\t\t\t\t\t\t" . '<a href="';
  35. echo $modulelink;
  36. echo '&action=languagemanagement&filename=';
  37. .........................................................................
  38. .........................................
  39. ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement