[ Avaa Bypassed ]




Upload:

Command:

hmhc3928@18.221.116.226: ~ $
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Config;

if (!defined('ABSPATH')) exit;


use MailPoet\WP\Functions as WPFunctions;

class Env {
  const NEWSLETTER_CONTENT_WIDTH = 1320;

  public static $version;
  public static $pluginName;
  public static $pluginPath;
  public static $baseUrl;
  public static $file;
  public static $path;
  public static $viewsPath;
  public static $assetsPath;
  public static $assetsUrl;
  public static $utilPath;
  public static $tempPath;
  public static $cachePath;
  public static $tempUrl;
  public static $languagesPath;
  public static $libPath;
  public static $pluginPrefix;
  /** @var string WP DB prefix + plugin prefix */
  public static $dbPrefix;
  /** @var string WP DB prefix only */
  public static $wpDbPrefix;
  public static $dbHost;
  public static $dbIsIpv6;
  public static $dbSocket;
  public static $dbPort;
  public static $dbName;
  public static $dbUsername;
  public static $dbPassword;
  public static $dbCharset;
  public static $dbCollation;
  public static $dbCharsetCollate;
  public static $dbTimezoneOffset;

  // back compatibility for older Premium plugin with underscore naming
  // (we need to allow it to activate so it can render an update notice)
  public static $plugin_name; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
  public static $temp_path; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps

  public static function init($file, $version, $dbHost, $dbUser, $dbPassword, $dbName) {
    self::$version = $version;
    self::$file = $file;
    self::$path = dirname(self::$file);
    self::$pluginName = 'mailpoet';
    self::$pluginPath = 'mailpoet/mailpoet.php';
    self::$baseUrl = WPFunctions::get()->pluginsUrl('', $file);
    self::$viewsPath = self::$path . '/views';
    self::$assetsPath = self::$path . '/assets';
    self::$assetsUrl = WPFunctions::get()->pluginsUrl('/assets', $file);
    self::$utilPath = self::$path . '/lib/Util';
    $wpUploadDir = WPFunctions::get()->wpUploadDir();
    self::$tempPath = $wpUploadDir['basedir'] . '/' . self::$pluginName;
    self::$cachePath = self::$path . '/generated/twig/';
    self::$tempUrl = $wpUploadDir['baseurl'] . '/' . self::$pluginName;
    self::$languagesPath = self::$path . '/../../languages/plugins/';
    self::$libPath = self::$path . '/lib';
    self::$pluginPrefix = WPFunctions::get()->applyFilters('mailpoet_db_prefix', 'mailpoet_');
    self::initDbParameters($dbHost, $dbUser, $dbPassword, $dbName);

    // back compatibility for older Premium plugin with underscore naming
    self::$plugin_name = self::$pluginName; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
    self::$temp_path = self::$tempPath; // phpcs:ignore Squiz.NamingConventions.ValidVariableName.MemberNotCamelCaps
  }

  /**
   * @see https://codex.wordpress.org/Editing_wp-config.php#Set_Database_Host for possible DB_HOSTS values
   */
  private static function initDbParameters($dbHost, $dbUser, $dbPassword, $dbName) {
    $parsedHost = WPFunctions::get()->parseDbHost($dbHost);
    if ($parsedHost === false) {
      throw new \InvalidArgumentException('Invalid db host configuration.');
    }
    [$host, $port, $socket, $isIpv6] = $parsedHost;

    global $wpdb;
    self::$dbPrefix = $wpdb->prefix . self::$pluginPrefix;
    self::$wpDbPrefix = $wpdb->prefix;
    self::$dbHost = $host;
    self::$dbIsIpv6 = $isIpv6;
    self::$dbPort = $port;
    self::$dbSocket = $socket;
    self::$dbName = $dbName;
    self::$dbUsername = $dbUser;
    self::$dbPassword = $dbPassword;
    self::$dbCharset = $wpdb->charset;
    self::$dbCollation = $wpdb->collate;
    self::$dbCharsetCollate = $wpdb->get_charset_collate();
    self::$dbTimezoneOffset = self::getDbTimezoneOffset();
  }

  public static function getDbTimezoneOffset($offset = false) {
    $offset = ($offset) ? $offset : WPFunctions::get()->getOption('gmt_offset');
    $offset = (float)($offset);
    $mins = $offset * 60;
    $sgn = ($mins < 0 ? -1 : 1);
    $mins = abs($mins);
    $hrs = floor($mins / 60);
    $mins -= $hrs * 60;
    return sprintf('%+03d:%02d', $hrs * $sgn, $mins);
  }
}

Filemanager

Name Type Size Permission Actions
PopulatorData Folder 0700
AccessControl.php File 3.89 KB 0644
Activator.php File 4.94 KB 0644
AssetsLoader.php File 1.68 KB 0644
Capabilities.php File 2.87 KB 0644
Changelog.php File 5.04 KB 0644
DeactivationPoll.php File 1.43 KB 0644
DeferredAdminNotices.php File 1.16 KB 0644
Env.php File 4.16 KB 0644
Hooks.php File 17.54 KB 0644
HooksWooCommerce.php File 6.76 KB 0644
Initializer.php File 16.87 KB 0644
Installer.php File 3.12 KB 0644
Localizer.php File 2.49 KB 0644
Menu.php File 24.02 KB 0644
PersonalDataErasers.php File 769 B 0644
PersonalDataExporters.php File 3.22 KB 0644
PluginActivatedHook.php File 776 B 0644
Populator.php File 23.89 KB 0644
PrivacyPolicy.php File 4.53 KB 0644
Renderer.php File 4.34 KB 0644
RendererFactory.php File 670 B 0644
RequirementsChecker.php File 3.73 KB 0644
Router.php File 1006 B 0644
ServicesChecker.php File 7.04 KB 0644
Shortcodes.php File 8.63 KB 0644
SilentUpgraderSkin.php File 570 B 0644
SubscriberChangesNotifier.php File 5 KB 0644
TranslationUpdater.php File 7.92 KB 0644
TwigEnvironment.php File 694 B 0644
TwigFileSystemCache.php File 853 B 0644
Updater.php File 1.97 KB 0644
index.php File 6 B 0644