Server IP : 104.21.38.3 / Your IP : 162.158.189.64 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/wpforms-lite/src/Emails/ |
Upload File : |
<?php namespace WPForms\Emails; /** * Helper class for the email templates. * * @since 1.8.5 */ class Helpers { /** * Get Email template choices. * * @since 1.8.5 * * @param bool $include_legacy Whether to include a Legacy template into the list. * * @return array */ public static function get_email_template_choices( $include_legacy = true ) { $choices = []; $templates = Notifications::get_all_templates(); // If there are no templates, return empty choices. if ( empty( $templates ) || ! is_array( $templates ) ) { return $choices; } // Add legacy template to the choices as the first option. if ( $include_legacy && self::is_legacy_html_template() ) { $choices['default'] = [ 'name' => esc_html__( 'Legacy', 'wpforms-lite' ), ]; } // Iterate through templates and build $choices array. foreach ( $templates as $template_key => $template ) { // Skip if the template name is empty. if ( empty( $template['name'] ) ) { continue; } $choices[ $template_key ] = $template; } return $choices; } /** * Retrieves the current email template name. * If the current template is not found, the default template will be returned. * * This method respects backward compatibility and will return the old "Legacy" template if it is set. * If a template name is provided, the function will attempt to validate and return it. If validation fails, * it will default to the email template name "Classic." * * @since 1.8.5 * * @param string $template_name Optional. The name of the email template to evaluate. * * @return string */ public static function get_current_template_name( $template_name = '' ) { // If a template name is provided, sanitize it. Otherwise, use the default template name from settings. $settings_template = wpforms_setting( 'email-template', Notifications::DEFAULT_TEMPLATE ); $template = ! empty( $template_name ) ? trim( sanitize_text_field( $template_name ) ) : $settings_template; // If the user has set the legacy template, return it. if ( $template === Notifications::LEGACY_TEMPLATE && self::is_legacy_html_template() ) { return Notifications::LEGACY_TEMPLATE; } // In case the user has changed the general settings template, // but the form submitted still uses the “Legacy” template, // we need to revert to the general settings template. if ( $template === Notifications::LEGACY_TEMPLATE && ! self::is_legacy_html_template() ) { $template = wpforms_setting( 'email-template', Notifications::DEFAULT_TEMPLATE ); } // Check if the given template name is valid by looking into available templates. $current_template = Notifications::get_available_templates( $template ); // If the current template is not found or its corresponding class does not exist, return the default template. if ( ! isset( $current_template['path'] ) || ! class_exists( $current_template['path'] ) ) { // Last resort, check if the template defined in the settings can be used. // This would be helpful when user downgrades from Pro to Lite version and the template is not available anymore. if ( isset( $current_template[ $settings_template ] ) ) { return $settings_template; } return Notifications::DEFAULT_TEMPLATE; } // The provided template is valid, so return it. return $template; } /** * Get the current email template class path. * * @since 1.8.5 * * @param string $template_name Optional. The name of the email template to evaluate. * @param string $fallback_class Optional. The class to use if the template is not found. * This argument most likely will be used for backward compatibility and supporting the "Legacy" template. * * @return string */ public static function get_current_template_class( $template_name = '', $fallback_class = '' ) { $template_name = self::get_current_template_name( $template_name ); // If the user has set the legacy template, return the "General" template. if ( $template_name === Notifications::LEGACY_TEMPLATE ) { return ! empty( $fallback_class ) && class_exists( $fallback_class ) ? $fallback_class : __NAMESPACE__ . '\Templates\General'; } // Check if the given template name is valid by looking into available templates. $current_template = Notifications::get_available_templates( $template_name ); // If the current template is not found or its corresponding class does not exist, return the "Classic" template. if ( ! isset( $current_template['path'] ) || ! class_exists( $current_template['path'] ) ) { return Notifications::get_available_templates( Notifications::DEFAULT_TEMPLATE )['path']; } // The provided template is valid, so return it. return $current_template['path']; } /** * Get the style overrides for the current email template. * * This function retrieves the style overrides for the email template, including background color, * body color, text color, link color, and typography. It provides default values and handles * different settings for both the free and Pro versions of the plugin. * * @since 1.8.5 * * @return array */ public static function get_current_template_style_overrides() { $header_image_size = self::get_template_header_image_size(); $defaults = [ 'email_background_color' => '#e9eaec', 'email_body_color' => '#ffffff', 'email_text_color' => '#333333', 'email_links_color' => '#e27730', 'email_typography' => self::get_template_typography(), 'header_image_max_width' => $header_image_size['width'], 'header_image_max_height' => $header_image_size['height'], ]; // This option will retrieve the old background color setting from the Lite version. $lite_background_color = wpforms_setting( 'email-background-color', $defaults['email_background_color'] ); // Return the color scheme if the user has the Pro version. if ( ! wpforms()->is_pro() ) { // Override the background color with the old setting. $defaults['email_background_color'] = $lite_background_color; return $defaults; } // Get the color scheme from the settings. // Default to an empty array if the setting is not found as we will merge it with the defaults later. $color_scheme = wpforms_setting( 'email-color-scheme', [] ); // If the user has the Pro version, but the background color is the old setting, override it. if ( empty( $color_scheme['email_background_color'] ) && ! empty( $lite_background_color ) ) { $color_scheme['email_background_color'] = $lite_background_color; } return wp_parse_args( $color_scheme, $defaults ); } /** * Check if the current email template is plain text. * * @since 1.8.5 * * @param string $template_name Optional. The name of the email template to compare. * * @return bool */ public static function is_plain_text_template( $template_name = '' ) { // Leave early in case the given template name is not empty, and we can resolve it early. if ( ! empty( $template_name ) ) { return $template_name === Notifications::PLAIN_TEMPLATE; } return wpforms_setting( 'email-template', Notifications::DEFAULT_TEMPLATE ) === Notifications::PLAIN_TEMPLATE; } /** * Check if the current template is legacy. * Legacy template is the one that its value is 'default'. * * @since 1.8.5 * * @return bool */ public static function is_legacy_html_template() { return wpforms_setting( 'email-template', Notifications::DEFAULT_TEMPLATE ) === Notifications::LEGACY_TEMPLATE; } /** * Get the current template's typography. * * This function retrieves the typography setting for email templates and returns the corresponding font family. * * If the user has the Pro version, the font-family is determined based on the current template. * For free users, the font-family defaults to "Sans Serif" because the available templates * ("Classic" and "Compact") use this font-family in their design. * * @since 1.8.5 * * @return string */ private static function get_template_typography() { $font_families = [ 'sans_serif' => '-apple-system, BlinkMacSystemFont, avenir next, avenir, segoe ui, helvetica neue, helvetica, Cantarell, Ubuntu, roboto, noto, arial, sans-serif', 'serif' => 'Iowan Old Style, Apple Garamond, Baskerville, Times New Roman, Droid Serif, Times, Source Serif Pro, serif, Apple Color Emoji, Segoe UI Emoji, Segoe UI Symbol', ]; // In case user downgraded to the free version return the "Sans Serif" font-family. // The only available templates for free users are "Classic" and "Compact" which both uses the "Sans Serif" font-family in their design. if ( ! wpforms()->is_pro() ) { return $font_families['sans_serif']; } $template_typography = wpforms_setting( 'email-typography', 'sans-serif' ); return isset( $font_families[ $template_typography ] ) ? $font_families[ $template_typography ] : $font_families['sans_serif']; } /** * Get the header image size based on the specified size or 'medium' by default. * * @since 1.8.5 * * @return array */ private static function get_template_header_image_size() { $sizes = [ 'small' => [ 'width' => '240', 'height' => '120', ], 'medium' => [ 'width' => '350', 'height' => '180', ], 'large' => [ 'width' => '500', 'height' => '240', ], ]; // The desired image size ('small', 'medium', or 'large'). $header_image_size = wpforms_setting( 'email-header-image-size', 'medium' ); return ! empty( $sizes[ $header_image_size ] ) ? $sizes[ $header_image_size ] : $sizes['medium']; } }