01.
public
function
subscribeEvents()
02.
{
03.
Backend::
$events
->addEvent(
'shop:onExtendManufacturerModel'
,
$this
,
'extend_manufacturer_model'
);
04.
Backend::
$events
->addEvent(
'shop:onExtendManufacturerForm'
,
$this
,
'extend_manufacturer_form'
);
05.
Backend::
$events
->addEvent(
'shop:onGetManufacturerFieldOptions'
,
$this
,
'get_manufacturer_field_options'
);
06.
}
07.
08.
public
function
extend_manufacturer_model(
$manufacturer
)
09.
{
10.
$manufacturer
->define_column(
'x_color'
,
'Color'
);
11.
}
12.
13.
public
function
extend_manufacturer_form(
$manufacturer
,
$context
)
14.
{
15.
$manufacturer
->add_form_field(
'x_color'
)->tab(
'Product Type'
)->renderAs(frm_dropdown);
16.
}
17.
18.
public
function
get_manufacturere_field_options(
$field_name
,
$current_key_value
)
19.
{
20.
if
(
$field_name
==
'x_color'
)
21.
{
22.
$options
=
array
(
23.
0 =>
'Red'
,
24.
1 =>
'Green'
,
25.
2 =>
'Blue'
26.
);
27.
28.
if
(
$current_key_value
== -1)
29.
return
$options
;
30.
31.
if
(
array_key_exists
(
$current_key_value
,
$options
))
32.
return
$options
[
$current_key_value
];
33.
}
34.
}