01.
public
function
subscribeEvents()
02.
{
03.
Backend::
$events
->addEvent(
'shop:onExtendProductModel'
,
$this
,
'extend_product_model'
);
04.
Backend::
$events
->addEvent(
'shop:onExtendProductForm'
,
$this
,
'extend_product_form'
);
05.
}
06.
07.
public
function
extend_product_model(
$product
)
08.
{
09.
$product
->define_column(
'x_extra_description'
,
'Extra description'
);
10.
}
11.
12.
public
function
extend_product_form(
$product
,
$context
)
13.
{
14.
$product
->add_form_field(
'x_extra_description'
)->tab(
'Product'
);
15.
}