Magento前端类型限制

时间:2017-04-25 18:44:25

标签: magento configuration magento-backend

我想将magento后端自定义变量的文本字段类型限制为int。似乎没有任何类型的资格。最接近的是文本。我想通过使用前端类型和模型的组合来限制;然而,似乎需要做很多工作,只是将类型限制为int。有没有更好的解决方案呢?

1 个答案:

答案 0 :(得分:0)

我找到了答案。它是在字段定义中添加验证标记。 validate标记可以验证所有类型的值。就我而言,它是:

<validate>validate-digits</validate>

完整的解决方案是:

<fields>
     <field_name translate="label">
          <label>Field Label</label>
          <frontend_type>text</frontend_type>
          <validate>validate-digits</validate>
          <show_in_default>1</show_in_default>
          <show_in_website>0</show_in_website>
          <show_in_store>0</show_in_store>
      </field_name>
</fields>