You are here

function scheduler_api_test_scheduler_media_list in Scheduler 2.x

Implements hook_scheduler_media_list().

File

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

Code

function scheduler_api_test_scheduler_media_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);
}