products_set_categories.after
Triggered on adding a group of products to categories.
Shop-Script
Input (passed by reference)
$params array Parameters.
$params['category_ids'] array IDs of categories to which products were added.
$params['new_category_id'] int ID of a new category, to which products were added, if the new set was created via the products-to-categories-adding dialog.
$params['hash'] string Hash in the URL of a page in “Products” section if all products on the current page were added to selected categories.
$params['products_id'] array IDs of individually selected products.
$params['category_ids'] array IDs of categories to which products were added.
$params['new_category_id'] int ID of a new category, to which products were added, if the new set was created via the products-to-categories-adding dialog.
$params['hash'] string Hash in the URL of a page in “Products” section if all products on the current page were added to selected categories.
$params['products_id'] array IDs of individually selected products.
… your plugin code …
Output
Shop-Script
Plugin code example
PHP
public function productsSetCategoriesAfter($params)
{
waLog::dump($params, 'shop/plugins/' . $this->id . '/products-set-categories-after.log');
}









