Les intercepteurs de plug-in et la substitution avec préférence ne fonctionnent pas sur les méthodes statiques.
Besoin de remplacer la méthode getOptionArray dans Magento \ Catalog \ Model \ Product \ Visibility pour renvoyer une visibilité personnalisée
/**
* Retrieve option array
*
* @return array
*/
public static function getOptionArray()
{
return [
self::VISIBILITY_NOT_VISIBLE => __('Not Visible Individually'),
self::VISIBILITY_IN_CATALOG => __('Catalog'),
self::VISIBILITY_IN_SEARCH => __('Search'),
self::VISIBILITY_BOTH => __('Catalog, Search')
];
}
De toute autre manière, cela peut-il être réalisé?