Alert: This function’s access is marked private. This means it is not intended for use by plugin or theme developers, only in other core functions. It is listed here for completeness.

MP_AbandonedFields::check_stat_file_exist()

Add stat file.

Contents


Source Source

File: mortgage-platform/Inc/MP_AbandonedFields.php

	private function check_stat_file_exist() {
		$value    = array();
		$value[0] = 0; // Submit
		$value[1] = 0; // Begin Edit
		$value[2] = 0; // total views
		if ( '' === get_option( $this->form_stats ) ) {
			update_option( $this->form_stats, $value );
		}
	}

Top ↑

Changelog Changelog

Changelog
Version Description
1.0.0 Introduced.