PHP Drupal Block可见性:在博客和论坛上显示

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP Drupal Block可见性:在博客和论坛上显示相关的知识,希望对你有一定的参考价值。

<?php
if (arg(0) == 'blog') {
  return TRUE;
}
if (arg(0) == 'node' && ctype_digit(arg(1))) {
  $node = node_load(arg(1));
  if ($node->type == 'forum') {
    return TRUE;
  }   
}
return FALSE;
?>

以上是关于PHP Drupal Block可见性:在博客和论坛上显示的主要内容,如果未能解决你的问题,请参考以下文章

PHP Drupal Block可见性:检查角色

PHP Drupal Block可见性:检查UID

PHP Drupal Block可见性:检查节点类型

Drupal块可见性:在博客和论坛上显示

Drupal - 阻止可见性

Drupal块可见性:检查节点类型