PluginProbe
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs / 2.6.6
BlockSpare – Gutenberg Blocks, AI Content Generator & Site Builder for News, Magazine & Blogs v2.6.6
5.0.1 4.1.0 trunk 1.0.0 1.0.1 1.0.2 1.0.3 1.0.4 1.0.5 1.1.0 1.1.1 1.1.2 1.2.0 1.2.1 1.2.2 1.2.3 1.3.0 1.3.1 1.3.2 1.3.3 1.3.4 1.3.5 2.1.2 2.5.0 2.5.3 All 39 releases
← All changes | freemius/includes/entities/class-fs-user.php +12 -1 1.3.5 → 2.6.6 View file →
@@ -55,8 +55,19 @@
55 55 function is_verified() {
56 56 return ( isset( $this->is_verified ) && true === $this->is_verified );
57 57 }
58 58
59 - static function get_type() {
59 + /**
60 + * @author Leo Fajardo (@leorw)
61 + * @since 2.4.2
62 + *
63 + * @return bool
64 + */
65 + function is_beta() {
66 + // Return `false` since this is just for backward compatibility.
67 + return false;
68 + }
69 +
70 + static function get_type() {
60 71 return 'user';
61 72 }
62 73 }