You are here

function hs_book_hierarchical_select_params in Hierarchical Select 5.3

Implementation of hook_hierarchical_select_params().

File

modules/hs_book.module, line 84
Implementation of the Hierarchical Select API for the Book module.

Code

function hs_book_hierarchical_select_params() {
  $params = array(
    'nid',
  );
  return $params;
}