遵循这个答案将是这样的代码:
Product::$definition['fields']['mystock'] = array('type' => ObjectModel::TYPE_INT, 'validate' => 'isUnsignedInt');
class Product extends ProductCore
{
public $mystock;
}
但它不起作用。
ps 我想添加一个定义规则顺便说一句。
更新 1。
Supplier
这是我在模块中对类的工作覆盖:
class Supplier extends SupplierCore
{
/** @var string Email */
public $email;
/**
* @see ObjectModel::$definition
*/
public static $definition = array(
'table' => 'supplier',
'primary' => 'id_supplier',
'multilang' => true,
'fields' => array(
'name' => array('type' => self::TYPE_STRING, 'validate' => 'isCatalogName', 'required' => true, 'size' => 64),
'active' => array('type' => self::TYPE_BOOL),
'date_add' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
'date_upd' => array('type' => self::TYPE_DATE, 'validate' => 'isDate'),
'email' => array('type' => self::TYPE_STRING, 'validate' => 'isEmail', 'size' => 128),
// Lang fields
'description' => array('type' => self::TYPE_HTML, 'lang' => true, 'validate' => 'isCleanHtml'),
'meta_title' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 128),
'meta_description' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255),
'meta_keywords' => array('type' => self::TYPE_STRING, 'lang' => true, 'validate' => 'isGenericName', 'size' => 255),
),
);
public function __construct($id = null, $id_lang = null)
{
parent::__construct($id, $id_lang);
}
}
更新 2。
这是错误的一面:
Supplier::$definition['fields']['email'] = array('type' => ObjectModel::TYPE_STRING, 'validate' => 'isEmail', 'required' => true, 'size' => 128);
class Supplier extends SupplierCore
{
/** @var string Email */
public $email;
public function __construct($id = null, $id_lang = null)
{
parent::__construct($id, $id_lang);
}
}
那么如何做到这一点,如果可能的话?
upd 3.也许更好的是在提交表单的某个地方添加它,在此检查之前:
$validation = $address->validateController();
// checks address validity
if (count($validation) > 0)
{
foreach ($validation as $item)
$this->errors[] = $item;
$this->errors[] = Tools::displayError('The address is not correct. Please make sure all of the required fields are completed.');
}
但是怎么做?