You are here

function taxonomy_term_depth_queue_manager in Taxonomy Term Depth 8

Same name and namespace in other branches
  1. 8.2 taxonomy_term_depth.module \taxonomy_term_depth_queue_manager()

Get QueueManager service.

Return value

Drupal\taxonomy_term_depth\QueueManager\Manager.

File

./taxonomy_term_depth.module, line 257
Main module file.

Code

function taxonomy_term_depth_queue_manager($vid = NULL) {
  return \Drupal::service('taxonomy_term_depth.queue_service')
    ->setVid($vid);
}