01.
public
function
subscribeEvents()
02.
{
03.
Backend::
$events
->addEvent(
'shop:onExtendCompanyInformationModel'
,
$this
,
'extend_company_information_model'
);
04.
Backend::
$events
->addEvent(
'shop:onExtendCompanyInformationForm'
,
$this
,
'extend_company_information_form'
);
05.
}
06.
07.
public
function
extend_company_information_model(
$company_information
)
08.
{
09.
$company_information
->define_column(
'x_extra_description'
,
'Extra description'
);
10.
}
11.
12.
public
function
extend_company_information_form(
$company_information
,
$context
)
13.
{
14.
$company_information
->add_form_field(
'x_extra_description'
)->tab(
'Custom'
);
15.
}