MP_BaseLeadSettings::add_calculate_fields( string $lead )

Add Lead calculate fields.


Parameters Parameters

$lead

(string) (Required) post type key


Top ↑

Source Source

File: mortgage-platform/Inc/Base/MP_BaseLeadSettings.php

	public function add_calculate_fields( $lead ) {

		add_meta_box(
			'calculate_information',
			__( 'Calculate Information', 'mortgage_platform' ),
			array( $this, 'calculate_information_callback' ),
			$lead,
			'normal',
			'core'
		);
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.