Comme l'écrit @Wojtek Naruniec, vous devez créer votre propre méthode de validation personnalisée dans un fichier javascript et l'utiliser dans le champ de configuration de votre module dans le fichier system.xml .
Supposons que votre domaine soit:
<field id="color" translate="label comment" type="text" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Color</label>
<comment>Exadecimal value, without #: ex. FFFFFF</comment>
</field>
et vous souhaitez vérifier la longueur du champ (exactement 6 caractères).
Créez votre fichier javascript,
vendorName / moduleName / view / adminhtml / web / js / validation.js
par exemple:
require([
'jquery',
'mage/translate',
'jquery/validate'],
function($){
$.validator.addMethod(
'validate-exadecimal-color-length', function (v) {
return (v.length == 6);
}, $.mage.__('Field must have length of 6'));
}
);
puis chargez le fichier javascript dans la page de configuration de l'administrateur, vous devez donc générer le fichier
vendorName / moduleName / view / adminhtml / layout / adminhtml_system_config_edit.xml
<?xml version="1.0"?>
<page xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:noNamespaceSchemaLocation="urn:magento:framework:View/Layout/etc/page_configuration.xsd">
<head>
<link src="vendorName_moduleName::js/validation.js"/>
</head>
</page>
Vous pouvez maintenant utiliser votre validateur en ajoutant une <validate>
balise dans la <field>
balise de votre fichier system.xml :
<field id="color" translate="label comment" type="text" sortOrder="3" showInDefault="1" showInWebsite="1" showInStore="1">
<label>Color</label>
<validate>validate-exadecimal-color-length</validate>
<comment>Exadecimal value, without #: ex. FFFFFF</comment>
</field>