REDROOM
PHP 8.0.30
Path:
Logout
Edit File
Size: 2.83 KB
Close
/home/certprox/test.certproxywizard.com/wp-content/plugins/woocommerce/src/Internal/EmailEditor/WooContentProcessor.php
Text
Base64
<?php declare( strict_types=1 ); namespace Automattic\WooCommerce\Internal\EmailEditor; use Automattic\WooCommerce\EmailEditor\Email_Css_Inliner; use Automattic\WooCommerce\EmailEditor\Email_Editor_Container; use Automattic\WooCommerce\EmailEditor\Engine\Theme_Controller; /** * Class responsible for extracting the main content from a WC_Email object. */ class WooContentProcessor { /** * Email theme controller * We use it to get email CSS. * * @var Theme_Controller */ private $theme_controller; /** * CSS inliner * * @var Email_Css_Inliner */ private $css_inliner; /** * Constructor */ public function __construct() { $this->theme_controller = Email_Editor_Container::container()->get( Theme_Controller::class ); $this->css_inliner = new Email_Css_Inliner(); } /** * Get the WooCommerce content excluding headers and footers. * * @param \WC_Email $wc_email WooCommerce email. * @return string */ public function get_woo_content( \WC_Email $wc_email ): string { $woo_content = $this->capture_woo_content( $wc_email ); $woo_content_with_css = $this->inline_css( $woo_content ); return $this->get_html_body_content( $woo_content_with_css ); } /** * Filter CSS for the email. * The CSS was from email editor was already inlined. * The method hookes to woocommerce_email_styles and removes CSS rules that we don't want to apply to the email. * * @param string $css CSS. * @return string */ public function prepare_css( string $css ): string { remove_filter( 'woocommerce_email_styles', array( $this, 'prepare_css' ) ); // Remove color and font-family declarations from WooCommerce CSS. $css = preg_replace( '/color\s*:\s*[^;]+;/', '', $css ); $css = preg_replace( '/font-family\s*:\s*[^;]+;/', '', $css ); return $css; } /** * Get the content of the body tag from the HTML. * * @param string $html HTML. * @return string */ private function get_html_body_content( string $html ): string { // Extract content between <body> and </body> tags using regex. if ( preg_match( '/<body[^>]*>(.*?)<\/body>/is', $html, $matches ) ) { return $matches[1]; } return $html; } /** * Inline the CSS from the email theme and user email settings. * * @param string $woo_content WooCommerce content. * @return string */ private function inline_css( string $woo_content ): string { if ( empty( $woo_content ) ) { return ''; } $css = $this->theme_controller->get_stylesheet_for_rendering(); return $this->css_inliner->from_html( $woo_content )->inline_css( $css )->render(); } /** * Capture the WooCommerce content excluding headers and footers. * * @param \WC_Email $wc_email WooCommerce email. * @return string */ private function capture_woo_content( \WC_Email $wc_email ): string { return $wc_email->get_block_editor_email_template_content(); } }
Save
Close
Exit & Reset
Text mode: syntax highlighting auto-detects file type.
Directory Contents
Dirs: 4 × Files: 10
Delete Selected
Select All
Select None
Sort:
Name
Size
Modified
Enable drag-to-move
Name
Size
Perms
Modified
Actions
EmailPatterns
DIR
-
drwxr-xr-x
2026-03-04 08:20:07
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
EmailTemplates
DIR
-
drwxr-xr-x
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
PersonalizationTags
DIR
-
drwxr-xr-x
2026-03-04 08:20:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
WCTransactionalEmails
DIR
-
drwxr-xr-x
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
BlockEmailRenderer.php
5.39 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
EmailApiController.php
8.55 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
error_log
5.85 KB
lrw-r--r--
2026-07-01 00:20:48
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Integration.php
13.66 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Logger.php
4.10 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Package.php
1.64 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
PageRenderer.php
4.62 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
PersonalizationTagManager.php
2.20 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
TransactionalEmailPersonalizer.php
3.19 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
WooContentProcessor.php
2.83 KB
lrw-r--r--
2026-03-02 23:35:11
Edit
Download
Rename
Chmod
Change Date
Delete
OK
Cancel
recursive
OK
Cancel
recursive
OK
Cancel
Zip Selected
If ZipArchive is unavailable, a
.tar
will be created (no compression).