MailPoet\EmailEditor\Engine\Renderer\ContentRenderer

Process_Manager::__construct()publicWC 1.0

Process_Manager constructor.

Method of the class: Process_Manager{}

No Hooks.

Return

null. Nothing (null).

Usage

$Process_Manager = new Process_Manager();
$Process_Manager->__construct(;

Process_Manager::__construct() code WC 9.8.1

public function __construct(
	Cleanup_Preprocessor $cleanup_preprocessor,
	Blocks_Width_Preprocessor $blocks_width_preprocessor,
	Typography_Preprocessor $typography_preprocessor,
	Spacing_Preprocessor $spacing_preprocessor,
	Highlighting_Postprocessor $highlighting_postprocessor,
	Variables_Postprocessor $variables_postprocessor
) {
	$this->register_preprocessor( $cleanup_preprocessor );
	$this->register_preprocessor( $blocks_width_preprocessor );
	$this->register_preprocessor( $typography_preprocessor );
	$this->register_preprocessor( $spacing_preprocessor );
	$this->register_postprocessor( $highlighting_postprocessor );
	$this->register_postprocessor( $variables_postprocessor );
}