OwlCyberSecurity - MANAGER
Edit File: TemplateApiController.php
<?php declare( strict_types = 1 ); namespace Automattic\WooCommerce\Internal\EmailEditor\EmailTemplates; use Automattic\WooCommerce\EmailEditor\Validator\Builder; defined( 'ABSPATH' ) || exit; /** * API Controller for managing WooCommerce email templates via extending the post type API. * * @internal */ class TemplateApiController { /** * Returns the sender settings for the given template. * * @param array $template_data - WP_Block_Template data. * @return array */ public function get_template_data( $template_data ): array { $template_slug = $template_data['slug'] ?? null; if ( WooEmailTemplate::TEMPLATE_SLUG !== $template_slug ) { return array(); } return array( 'sender_settings' => array( 'from_name' => get_option( 'woocommerce_email_from_name' ), 'from_address' => get_option( 'woocommerce_email_from_address' ), ), ); } /** * Update WooCommerce specific data we store with Template. * * @param array $data - WP_Block_Template data. * @param \WP_Block_Template $template_post - WP_Block_Template object. * @return \WP_Error|null Returns WP_Error if email validation fails, null otherwise. */ public function save_template_data( array $data, \WP_Block_Template $template_post ): ?\WP_Error { if ( WooEmailTemplate::TEMPLATE_SLUG === $template_post->slug && isset( $data['sender_settings'] ) ) { $new_from_name = $data['sender_settings']['from_name'] ?? null; if ( null !== $new_from_name ) { update_option( 'woocommerce_email_from_name', $new_from_name ); } $new_from_address = $data['sender_settings']['from_address'] ?? null; if ( null === $new_from_address || ! filter_var( $new_from_address, FILTER_VALIDATE_EMAIL ) ) { return new \WP_Error( 'invalid_email_address', __( 'Invalid email address provided for sender settings', 'woocommerce' ), array( 'status' => 400 ) ); } update_option( 'woocommerce_email_from_address', $new_from_address ); } return null; } /** * Get the schema for the template data. * * @return array */ public function get_template_data_schema(): array { return Builder::object( array( 'sender_settings' => Builder::object( array( 'preheader' => Builder::string(), 'preview_url' => Builder::string(), ) ), ) )->to_array(); } }