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

Form_Edit_Page_Handler::is_temp_id( int $id )

Checks whether a specific ID is a temporary ID.

Description

Parameters

$id

(int) (Required) Component ID.

Return

(bool) True if temporary ID, false otherwise.

Source

File: src/db-objects/forms/form-edit-page-handler.php

	private function is_temp_id( $id ) {
		return is_string( $id ) && 'temp_id_' === substr( $id, 0, 8 );
	}

Changelog

Changelog
Version Description
1.0.0 Introduced.