BSF_License_Manager::is_edd( string $license_key )

Is EDD.


Description


Parameters

$license_key

(string) (Required) License key.


Source

File: admin/bsf-core/class-bsf-license-manager.php

		public function is_edd( $license_key ) {

			// Purchase key length for EDD is 32 characters.
			if ( strlen( $license_key ) === 32 ) {

				return true;
			}

			return false;
		}


User Contributed Notes

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