You are here

function scheduler_api_test_scheduler_commerce_product_list in Scheduler 2.x

Implements hook_scheduler_commerce_product_list().

File

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

Code

function scheduler_api_test_scheduler_commerce_product_list($process, $entityTypeId) {

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