. , , , -
Here is what I am using right now. I don’t know if this is exactly what you are looking for, but you can visualize the edges on any page that is applicable. (assuming faces should be displayed)
For me, these are search results through submissions.
I am making a block, with all the search graphs in one block.
<div class="xfacet">
Something here
<?php
$block = module_invoke('facetapi', 'block_view', 'xxxx');
print render($block['content']);
?>
</div>
<div class="xfacet">
Something there
<?php
$block = module_invoke('facetapi', 'block_view', 'xxxx');
print render($block['content']);
?>
</div>
I just control where the block is displayed. After starting, you will see a link.
source
share