Active
Project:
Block Page Visibility
Version:
6.x-1.0
Component:
Code
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
8 Jul 2009 at 05:36 UTC
Updated:
18 Mar 2010 at 22:17 UTC
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
Comment #1
marcp commentedThe documentation is out of date -- you'll want to define your hook_bpv_config() function like this:
Comment #2
rocket777 commentedThanks marcp
I had to go with another solution. quite don't remember what I did.
However, this should come in handy for future projects