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.

Astra_Addon_License_Notice::get_product_id()

Get the product ID for license check


Description


Return

(string) Product ID


Source

File: admin/core/includes/class-astra-addon-license-notice.php

	private function get_product_id() {
		if ( is_callable( 'bsf_extract_product_id' ) ) {
			return call_user_func( 'bsf_extract_product_id', ASTRA_EXT_DIR );
		}
		return '';
	}

Changelog

Changelog
Version Description
4.12.0 Introduced.


User Contributed Notes

You must log in before being able to contribute a note or feedback.