Hi
This is the function I call in my site's custom module, but it still does not display the block. Please let me know what I am doing wrong
function mysite_custom_bpv_config($name) {
$blocks = array(
'views-nodequeue_2-block' => array(BPV_INCLUSIVE,array(''), array(),NULL),
);
return $blocks[$name];
}

Comments

marcp’s picture

The documentation is out of date -- you'll want to define your hook_bpv_config() function like this:

<?php
function mysite_custom_bpv_config() {
  $blocks = array(
    'views-nodequeue_2-block' => array(BPV_INCLUSIVE,array(''), array(),NULL),
  );
  return $blocks;
}?>
rocket777’s picture

Thanks marcp
I had to go with another solution. quite don't remember what I did.

However, this should come in handy for future projects