You are here

function authorqueue_nodequeue_info in Nodequeue 5.2

Implementation of hook_nodequeue_info()

File

./authorqueue.module, line 6

Code

function authorqueue_nodequeue_info() {
  return array(
    'smartqueue_author' => array(
      'title' => t('Author queue'),
      'description' => t('Each user in the selected roles will be given a queue; nodequeue administrators can select nodes by that author for placement into that queue, allowing the site to easily hilight content by particular authors.'),
    ),
  );
}