Drupal显示节点的修改日期

时间:2011-09-27 01:44:26

标签: drupal drupal-7 drupal-theming

Drupal中是否有一种简单的方法可以显示节点的上次修改日期,作为 node.tpl.php 文件的一部分?

3 个答案:

答案 0 :(得分:10)

如果您将此代码放在node.tpl.php文件中,它将显示上次更改节点的日期:

<?php
echo format_date($node->changed);
?>

用你想要的任何HTML。

答案 1 :(得分:1)

If you place below code in you node.tpl.php file -

<?php 

    $node = node_load($nid);
    echo $node->changed;

?>

您将获得时间戳,我认为可以更改为日期。

这里tpl文件中的$ nid表示当前节点id,hook node_load()加载与节点id相关的所有信息。

答案 2 :(得分:1)

无需编辑node.tpl.php文件。在template.php中使用以下内容。

function sitetheme_preprocess_node(&$variables) {
  $node = $variables['node'];

  // Only add the revision information if the node is configured to display
  if ($variables['display_submitted'] && ($node->revision_uid != $node->uid || $node->revision_timestamp != $node->created)) {
    // Append the revision information to the submitted by text.
    $revision_account = user_load($node->revision_uid);
    $variables['revision_name'] = theme('username', array('account' => $revision_account));
    $variables['revision_date'] = format_date($node->changed);
    $variables['submitted'] .= t(' and last modified by !revision-name on !revision-date', array(
      '!name' => $variables['name'], '!date' => $variables['date'], '!revision-name' => $variables['revision_name'], '!revision-date' => $variables['revision_date']));
  }
}