Drupal日历弹出主题

时间:2010-02-08 14:46:54

标签: drupal drupal-6

以下代码是方法theme_jcalendar_view的默认设置,它是一个主题函数。

<?php
    function theme_jcalendar_view($node) {
      $output = node_view($node, TRUE);
      $output .= '<div id="nodelink">'. l(t('more', array(), $node->language),         calendar_get_node_link($node)) .'</div>';
      return $output;
    }
?>

在我的主题中,我想输出节点的整个主体而不是预告片?我该怎么做?我想我将该方法添加到我的自定义template.php文件中,名称为myThemeName_theme_jcalendar_view。

由于

琳达

1 个答案:

答案 0 :(得分:0)

看看node_view的api是真的是预告片。所以做我的代码应该工作(没有测试):

<?php
  function mytheme_jcalendar_view($node) { 

return node_view($ node);        }     ?&GT;