MP_BaseLeadSettings::add_calculate_fields( string $lead )
Add Lead calculate fields.
Contents
Parameters Parameters
- $lead
-
(string) (Required) post type key
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'
);
}
Changelog Changelog
| Version | Description |
|---|---|
| 1.0.0 | Introduced. |