Advertisement
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
- *
- */
- $dir = str_replace('modules/addons/clientx/includes', '', __DIR__);
- $files = glob($dir . 'lang/overrides/*.*');
- $filePath = $dir . 'lang/overrides/';
- if (isset($_POST['frmSubFile'])) {
- $fileNameGetSave = $filePath . $_GET['filename'] . '.php';
- file_put_contents($fileNameGetSave, htmlspecialchars_decode($_POST['filesedit'], ENT_QUOTES));
- }
- echo '<div id="wrapper">' . "\n" . ' <div class="addon_container">' . "\n" . ' <div class="ad_content_area">' . "\n" . ' ';
- if (file_exists(__DIR__ . '/header.php')) {
- require_once __DIR__ . '/header.php';
- }
- 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";
- for ($i = 0; $i < count($files); $i++) {
- $lang_file_name = basename($files[$i]);
- $lang = str_replace('.php', '', $lang_file_name);
- echo "\t\t\t\t\t\t\t" . '<a href="';
- echo $modulelink;
- echo '&action=languagemanagement&filename=';
- .........................................................................
- .........................................
- ..............
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement