/home/vianto5/distritosatelite.mx/wp-content/plugins/wordpress-seo/src/config
NameSizeModeActions
migrations/-0755rm
badge-group-names.php14860644editdlrm
conflicting-plugins.php54120644editdlrm
indexing-reasons.php13150644editdlrm
migration-status.php52710644editdlrm
oauth-client.php91060644editdlrm
researcher-languages.php3390644editdlrm
schema-ids.php10910644editdlrm
schema-types.php40990644editdlrm
semrush-client.php26800644editdlrm
wincher-client.php39260644editdlrm
wincher-pkce-provider.php71950644editdlrm
Edit: /home/vianto5/distritosatelite.mx/wp-content/plugins/wordpress-seo/src/config/badge-group-names.php (1486B)
'16.7-beta0', ]; /** * The current plugin version. * * @var string */ protected $version; /** * Badge_Group_Names constructor. * * @param string|null $version Optional: the current plugin version. */ public function __construct( $version = null ) { if ( ! $version ) { $version = \WPSEO_VERSION; } $this->version = $version; } /** * Check whether a group of badges is still eligible for a "new" badge. * * @param string $group One of the GROUP_* constants. * @param string|null $current_version The current version of the plugin that's being checked. * * @return bool Whether a group of badges is still eligible for a "new" badge. */ public function is_still_eligible_for_new_badge( $group, $current_version = null ) { if ( ! \array_key_exists( $group, $this::GROUP_NAMES ) ) { return false; } $group_version = $this::GROUP_NAMES[ $group ]; $current_version ??= $this->version; return (bool) \version_compare( $group_version, $current_version, '>' ); } }