You are here

function scheduler_api_test_scheduler_commerce_product_list_alter in Scheduler 2.x

Implements hook_scheduler_commerce_product_list_alter().

File

tests/modules/scheduler_api_test/scheduler_api_test.module, line 176
Hook implementations of the Scheduler API Test module.

Code

function scheduler_api_test_scheduler_commerce_product_list_alter(&$ids, $process, $entityTypeId) {

  // This hook does exactly the same as the node version, so re-use that.
  scheduler_api_test_scheduler_node_list_alter($ids, $process, $entityTypeId);
}