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.

BSF_Update_Manager::is_beta_version( string $version )

Is Beta version


Description


Parameters

$version

(string) (Required) Version.


Return

(bool.)


Source

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

		private function is_beta_version( $version ) {
			return strpos( $version, 'beta' ) ||
				strpos( $version, 'alpha' );
		}


User Contributed Notes

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