Hook actionAdminProductsListingFieldsModifier
Hook |
actionAdminProductsListingFieldsModifier |
Locations |
BO |
Type |
action |
Origin |
core |
Aliases |
|
Located in
Parameters details
<?php
array(
'_ps_version' => (string) PrestaShop version,
'sql_select' => &(array),
'sql_table' => &(array),
'sql_where' => &(array),
'sql_order' => &(array),
'sql_limit' => &(string),
);
Call of the Hook in the origin file
Hook::exec('actionAdminProductsListingFieldsModifier', [
'_ps_version' => AppKernel::VERSION,
'sql_select' => &$sqlSelect,
'sql_table' => &$sqlTable,
'sql_where' => &$sqlWhere,
'sql_group_by' => &$sqlGroupBy,
'sql_order' => &$sqlOrder,
'sql_limit' => &$sqlLimit,
])