web-dev-qa-db-ja.com

カスタムモジュールで利用可能なテンプレート変数を取得する

デフォルトのテーマにフックしてテンプレートファイルをオーバーライドするカスタムモジュールを作成しています。あなたがカスタムテーマで行うことができるように。この時点で、hook_theme()関数を使用してカスタムモジュールで作成されたテンプレートを既に使用できます。これは私のページに表示されます。ただし、使用可能な変数はここには表示されません。 (例:コンテンツ、属性など)。

モジュールがこれらの変数を認識しないためでしょうか?これらの変数をカスタムモジュールのテンプレートに渡すにはどうすればよいですか。関数hook_preprocess_HOOK()について読みましたが、今のところ運がありません。

これはhook_theme()の実装です。

/**
 * Implements hook_theme()
 */
function episode_data_theme($existing, $type, $theme, $path) {
        return [
        'paragraph__episode_content_question_slider' => ['variables' => [] ],
    ];
}

これがテンプレートの内容です。

{#
/**
 * @file
 * Default theme implementation to display a paragraph.
 *
 * Available variables:
 * - paragraph: Full paragraph entity.
 *   Only method names starting with "get", "has", or "is" and a few common
 *   methods such as "id", "label", and "bundle" are available. For example:
 *   - paragraph.getCreatedTime() will return the paragraph creation timestamp.
 *   - paragraph.id(): The paragraph ID.
 *   - paragraph.bundle(): The type of the paragraph, for example, "image" or "text".
 *   - paragraph.getOwnerId(): The user ID of the paragraph author.
 *   See Drupal\paragraphs\Entity\Paragraph for a full list of public properties
 *   and methods for the paragraph object.
 * - content: All paragraph items. Use {{ content }} to print them all,
 *   or print a subset such as {{ content.field_example }}. Use
 *   {{ content|without('field_example') }} to temporarily suppress the printing
 *   of a given child element.
 * - attributes: HTML attributes for the containing element.
 *   The attributes.class element may contain one or more of the following
 *   classes:
 *   - paragraphs: The current template type (also known as a "theming hook").
 *   - paragraphs--type-[type]: The current paragraphs type. For example, if the paragraph is an
 *     "Image" it would result in "paragraphs--type--image". Note that the machine
 *     name will often be in a short form of the human readable label.
 *   - paragraphs--view-mode--[view_mode]: The View Mode of the paragraph; for example, a
 *     preview would result in: "paragraphs--view-mode--preview", and
 *     default: "paragraphs--view-mode--default".
 * - view_mode: View mode; for example, "preview" or "full".
 * - logged_in: Flag for authenticated user status. Will be true when the
 *   current user is a logged-in member.
 * - is_admin: Flag for admin user status. Will be true when the current user
 *   is an administrator.
 *
 * @see template_preprocess_paragraph()
 *
 * @ingroup themeable
 */
#}
{% block paragraph %}
    <div{{ attributes }}>
        {% block content %}
            {% set sliderDescription = content.field_slider_description|render|striptags %}
            {{ content.field_available_for }}
            <div {{ attributes }}  class="content-block content-block-slider">
                {{ content.field_slider_question }}
                <div class="field_slider_description">{{ sliderDescription|length > 200 ? sliderDescription|slice(0, 200) ~ '...' : sliderDescription }}</div>
                <a class="got-it" href="#content-block-{{ paragraph.id() }}" data-id="{{ paragraph.id() }}">{{ 'Got it'|trans }}</a>
            </div>
            <div id="content-block-{{ paragraph.id() }}" class="modal-dialog">
                <div>
                    <a href="#close" data-id="{{ paragraph.id() }}" id="{{ paragraph.id() }}" class="content-block-done close-modal-dialog"></a>
                    {{ content.field_slider_question }}
                    {{ content.field_slider_description }}
                </div>
            </div>
        {% endblock %}
    </div>
{% endblock paragraph %}

これは、ページに表示されるデバッグ出力です。

The twig template that is being used on the page

1
Ben

コードによると、段落のカスタムテンプレートを作成しています。

パラグラフモジュールによって追加される変数にアクセスしようとしているので、テーマシステムにそれがパラグラフであることを通知する必要があります。

'paragraph'ベースフックを追加することでそれを行うことができます。このようにして、テンプレートは段落の(前)処理によって提供される変数を取得します。

/**
 * Implements hook_theme()
 */
function episode_data_theme($existing, $type, $theme, $path) {
  return [
    'paragraph__episode_content_question_slider' => [
      'base hook' => 'paragraph',
    ],
  ];
}
2
Mario Steinitz