我如何检查或验证我在 magento system.xml 中声明的文本字段我的意思是当我在文本字段中输入单词并按保存配置按钮时,它将显示消息“这是保留字”。我可以在哪里为 system.xml 文本 field.over 代码调用或设置此函数。
public function isReserveWord($word) {
$is_reserved = false;
$reserve_words = array('supportportal','view','search','askquestion');
if (in_array($word,$reserve_words)) {
$is_reserved = true;}
return $is_reserved;}