pluginsUrl('', $file); self::$views_path = self::$path . '/views'; self::$assets_path = self::$path . '/assets'; self::$assets_url = WPFunctions::get()->pluginsUrl('/assets', $file); self::$util_path = self::$path . '/lib/Util'; $wp_upload_dir = WPFunctions::get()->wpUploadDir(); self::$temp_path = $wp_upload_dir['basedir'] . '/' . self::$plugin_name; self::$cache_path = self::$temp_path . '/cache'; self::$temp_url = $wp_upload_dir['baseurl'] . '/' . self::$plugin_name; self::$languages_path = self::$path . '/lang'; self::$lib_path = self::$path . '/lib'; self::$plugin_prefix = 'mailpoet_'; self::initDbParameters($db_host, $db_user, $db_password, $db_name); } /** * @see https://codex.wordpress.org/Editing_wp-config.php#Set_Database_Host for possible DB_HOSTS values */ private static function initDbParameters($db_host, $db_user, $db_password, $db_name) { $parsed_host = WPFunctions::get()->parseDbHost($db_host); if ($parsed_host === false) { throw new \InvalidArgumentException('Invalid db host configuration.'); } list($host, $port, $socket, $is_ipv6) = $parsed_host; global $wpdb; self::$db_prefix = $wpdb->prefix . self::$plugin_prefix; self::$db_host = $host; self::$db_port = $port ?: 3306; self::$db_socket = $socket; self::$db_name = $db_name; self::$db_username = $db_user; self::$db_password = $db_password; self::$db_charset = $wpdb->charset; self::$db_collation = $wpdb->collate; self::$db_charset_collate = $wpdb->get_charset_collate(); self::$db_source_name = self::dbSourceName(self::$db_host, self::$db_socket, self::$db_port, self::$db_charset, self::$db_name, $is_ipv6); self::$db_timezone_offset = self::getDbTimezoneOffset(); } private static function dbSourceName($host, $socket, $port, $charset, $db_name, $is_ipv6) { if ($is_ipv6) { $host = "[$host]"; } $source_name = [ 'mysql:host=', $host, ';', 'port=', $port, ';', 'dbname=', $db_name, ]; if (!empty($socket)) { $source_name[] = ';unix_socket=' . $socket; } if (!empty($charset)) { $source_name[] = ';charset=' . $charset; } return implode('', $source_name); } static function getDbTimezoneOffset($offset = false) { $offset = ($offset) ? $offset : WPFunctions::get()->getOption('gmt_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); } }