dsf4354353452 2010-12-06 16:24
浏览 22
已采纳

视图页面上的Drupal块可见性

I currently have the following PHP code to control the visibility of a block:

<?php
if ((arg(0) == 'node') && is_numeric(arg(1)) && (arg(2) == NULL)) {
return TRUE;
}
else {
return FALSE;
}
?>

This works a treat in displaying the block on all view node pages, whilst hiding the view when editing or adding a node.

The problem I'm having is that a number of my Drupal pages are generated from Views. I need this block to appear on these Views generated pages as well as the pages created directly through the CMS.

Any help would be appreciated - Thanks.

  • 写回答

1条回答 默认 最新

  • duanju8431 2010-12-06 16:47
    关注

    Thanks for poiting me in the right direction, found the answer I needed from this comment: http://drupal.org/node/134425#comment-834545

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?