1

Drupal 5 を使用しており、出力を変更したい多数のビューがあります。ビュー ウィザードを使用すると、インスタンスごとに異なるテンプレートを作成できますが、すべてのビューで同じ変更を行いたいと考えており、テーマ ディレクトリに 30 個のファイルがあり、メンテナンスとコードが膨大な量になります。すべてのビューに同時に対処し、現在持っているものを1回限り使用するデフォルトの方法があるかどうか、誰かが知っていますか?

これが私が今持っているものです:

views-list-home_______articles_______latest.tpl.php

<?php 
/**
 * views template to output one 'row' of a view.
 * This code was generated by the views theming wizard
 * Date: November 17, 2008 - 2:07pm
 * View: home_articles_latest
 *
 * Variables available:
 * $view -- the entire view object. Important parts of this object are
 *   home_articles_latest, .
 * $view_type -- The type of the view. Probably 'page' or 'block' but could
 *   also be 'embed' or other string passed in from a custom view creator.
 * $node -- the raw data. This is not a real node object, but will contain
 *   the nid as well as other support fields that might be necessary.
 * $count -- the current row in the view (not TOTAL but for this page) starting
 *   from 0.
 * $stripe -- 'odd' or 'even', alternating. * $title -- Display the title of the node.
 * $title_label -- The assigned label for $title
 * $comment_count -- This will display the comment count.
 * $comment_count_label -- The assigned label for $comment_count
 * $field_abstract_value -- 
 * $field_abstract_value_label -- The assigned label for $field_abstract_value
 *
 * This function goes in your views-list-home_articles_latest.tpl.php file
 */


 //now we add the stylesheet...
 //drupal_add_css(path_to_theme() .'/views-list-home_articles_latest.css');

  ?>
  <?php print $view ?>
<div class="view-label view-field-title">
  <?php print $title_label ?>
</div>
<div class="view-field view-data-title">
  <?php print $title?>
</div>

<?php if ($comment_count != '0' && $view_type == 'block'): ?>
<div class="view-label view-field-comment-count">
  <?php print $comment_count_label ?>
</div>
<div class="view-field view-data-comment-count">
  <?php print $add?><?php print $comment_count?>
</div>
<?php endif; ?>

<?php if ($count == 0): ?>
<div class="view-label view-field-field-abstract-value">
  <?php print $field_abstract_value_label ?>
</div>
<div class="view-field view-data-field-abstract-value">
  <?php print $field_abstract_value?>
</div>
<?php endif; ?>

template.php で

/**
 * views template to output a view.
 * This code was generated by the views theming wizard
 * Date: November 17, 2008 - 2:07pm
 * View: home_articles_latest
 *
 * This function goes in your template.php file
 */
function phptemplate_views_view_list_home_articles_latest($view, $nodes, $type) {
  $fields = _views_get_fields();

  $taken = array();

  // Set up the fields in nicely named chunks.
  foreach ($view->field as $id => $field) {
    $field_name = $field['field'];
    if (isset($taken[$field_name])) {
      $field_name = $field['queryname'];
    }
    $taken[$field_name] = true;
    $field_names[$id] = $field_name;
  }

  // Set up some variables that won't change.
  $base_vars = array(
    'view' => $view,
    'view_type' => $type,
  );

  foreach ($nodes as $i => $node) {
    $vars = $base_vars;
    $vars['node'] = $node;
    $vars['count'] = $i;
    $vars['stripe'] = $i % 2 ? 'even' : 'odd';
    foreach ($view->field as $id => $field) {
      $name = $field_names[$id];
      $vars[$name] = views_theme_field('views_handle_field', $field['queryname'], $fields, $field, $node, $view);
      if (isset($field['label'])) {
        $vars[$name . '_label'] = $field['label'];
      }
    }
    $items[] = _phptemplate_callback('views-list-home_articles_latest', $vars);
  }
  if ($items) {
    return theme('item_list', $items);
  }
}

ありがとう、
スティーブ

4

3 に答える 3

2

「views-list.tpl.php」という名前のファイルを作成するだけで、すべてのリスト スタイルのビューに適用されると思います(より具体的な .tpl.php ファイルが存在しない限り)。

それ以外の場合は、テーマ関数を使用して必要なものを取得する方法があるかもしれません。

于 2008-11-25T02:35:03.843 に答える
0

ビューのテンプレート内で行われていることについて話している場合は、各テンプレートを個別に更新する必要があると思います。n 個のビューのごく一部だけを更新する方法がわかりません。

各ビューのテンプレートの上に配置するヘッダーがある場合は、template.php のヘルパー関数または node.tpl.php の条件を使用してそれを行うことができる場合があります。しかし、それより奥にある場合は、運が悪いと思います。

于 2008-11-19T17:20:52.543 に答える
0

Views 5 では、モジュールがデフォルトで tpl ファイルを公開する方法がないため、テンプレート名は役に立ちません。重要なのは、template.php ファイル「phptemplate_views_view_list_home_articles_latest」に入れられる関数です。これは、「home_articles_latest」という名前のリスト ビューのレンダリングをインターセプトする PHP 関数です。すべてのビューを傍受したい場合は、関数自体の名前を「phptemplate_views_view」に変更するだけです。

ビュー、RSS フィードなどで構築されたサイドバー ブロックなど、すべてに影響することに注意してください。

于 2009-03-01T00:06:52.227 に答える