You are here

function scheduler_api_test_scheduler_media_unpublish_process in Scheduler 2.x

Implements hook_scheduler_media_unpublish_process().

File

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

Code

function scheduler_api_test_scheduler_media_unpublish_process(MediaInterface $media) {

  // Use the generic unpublish_process helper function.
  return _api_unpublish_process($media);
}