PHP的->设置必选(true)如果复选框的值是...?

时间:2018-07-08 16:40:39

标签: php prestashop prestashop-1.7

我是新手,我需要在prestashop 1.7中使用php的帮助

在注册时,我已经选中一个复选框来设置客户类型:

/classes/form/CustomerFormatter.php

$format['tipocliente'] = (new FormField)
->setName('Tipo cliente')
->setType('radio-buttons')
->setLabel('Tipo Cliente')
		        ->setRequired(true)
;
$format['tipocliente']->addAvailableValue(1, "Privato");
$format['tipocliente']->addAvailableValue(2, "Società");

我希望根据您选择的内容(“私人”或“公司”),根据需要设置此字段:

$format['company'] = (new FormField)
->setName('company')
->setType('text')
->setLabel($this->translator->trans(
          'Company', [], 'Shop.Forms.Labels'))
					;

我应该如何设置if?

if($format['tipocliente'] == "Società") {...?}

0 个答案:

没有答案