我需要在产品图片中添加新字段。
倍率/类/ Image.php
<?php
class Image extends ImageCore
{
public $mobile;
public function __construct($id = null, $id_lang = null)
{
self::$definition['fields']['mobile'] = array('type' => self::TYPE_BOOL, 'validate' => 'isBool');
parent::__construct($id, $id_lang);
}
}
并使用行
覆盖/ controllers / admin / templates / products / images.tpl <input id="mobile" type="checkbox" name="mobile" value="1" />
ALTER TABLE ps_image ADD mobile TINYINT(1) UNSIGNED NULL AFTER cover;
但它不起作用。出现复选框但不写入数据库。我做错了什么?