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' ); }
Expand full source code Collapse full source code View on Trac