Вывести изображения из Body во Views

Главные вкладки

Аватар пользователя dragondesign dragondesign 5 февраля 2022 в 11:02

Задача такая, в представлении вывести все используемые в Body изображения ноды.
Например, формирую список тизеров раздела... у каждого Заголовок ноды, краткий текст и несколько фото в ряд (из Body) с указанием +15 фото (количество используемых фото)...
В самой ноде нет поля изображение.

Пытаюсь использовать связь "Использование файлов", не работает... пишет "Обработчик для этого элемента сломан или отсутствует. Следующие детали доступны:

Enabling the appropriate module may solve this issue. Otherwise, check to see if there is a module update available."

Может быть есть расширители views... Так то файлы же знают где их используют, в базе это есть. Если сделать views типа Файл, там можно вытащить id ноды где используется этот файл... но остальные данные по ноде никак.... термины боди и пр.

В общем вот такой вопрос... прошу помочь, может кто уже плясал с бубном над подобной задачей?

Комментарии

Аватар пользователя marassa marassa 5 февраля 2022 в 12:25

dragondesign wrote: Если сделать views типа Файл, там можно вытащить id ноды где используется этот файл... но остальные данные по ноде никак.... термины боди и пр.

А связь с нодой по id нельзя добавить?

Аватар пользователя dragondesign dragondesign 5 февраля 2022 в 13:36

там для 8.8.x
для 9 ки нет. я для интереса посмотрел что он правит... и в ядре 9ки тот же файл... совпадений не нашел, функции поменялись... так что даже если применить или не сработает или сломает нафиг Smile

Аватар пользователя marassa marassa 5 февраля 2022 в 14:23

Не соображу как тут файл прикрепить:

<?php

namespace Drupal\file;

use Drupal\views\EntityViewsData;

/**
 * Provides views data for the file entity type.
 */

class FileViewsData extends EntityViewsData {

  /**
   * {@inheritdoc}
   */

  public function getViewsData() {
    $data = parent::getViewsData();

    // @TODO There is no corresponding information in entity metadata.
    $data['file_managed']['table']['base']['help'] = $this->t('Files maintained by Drupal and various modules.');
    $data['file_managed']['table']['base']['defaults']['field'] = 'filename';
    $data['file_managed']['table']['wizard_id'] = 'file_managed';

    $data['file_managed']['fid']['argument'] = [
      'id' => 'file_fid',
      // The field to display in the summary.
      'name field' => 'filename',
      'numeric' => TRUE,
    ];
    $data['file_managed']['fid']['relationship'] = [
      'title' => $this->t('File usage'),
      'help' => $this->t('Relate file entities to their usage.'),
      'id' => 'standard',
      'base' => 'file_usage',
      'base field' => 'fid',
      'field' => 'fid',
      'label' => $this->t('File usage'),
    ];

    $data['file_managed']['uri']['field']['default_formatter'] = 'file_uri';

    $data['file_managed']['filemime']['field']['default_formatter'] = 'file_filemime';

    $data['file_managed']['extension'] = [
      'title' => $this->t('Extension'),
      'help' => $this->t('The extension of the file.'),
      'real field' => 'filename',
      'field' => [
        'entity_type' => 'file',
        'field_name' => 'filename',
        'default_formatter' => 'file_extension',
        'id' => 'field',
        'click sortable' => FALSE,
       ],
    ];

    $data['file_managed']['filesize']['field']['default_formatter'] = 'file_size';

    $data['file_managed']['status']['field']['default_formatter_settings'] = [
      'format' => 'custom',
      'format_custom_false' => $this->t('Temporary'),
      'format_custom_true' => $this->t('Permanent'),
    ];
    $data['file_managed']['status']['filter']['id'] = 'file_status';

    $data['file_managed']['uid']['relationship']['title'] = $this->t('User who uploaded');
    $data['file_managed']['uid']['relationship']['label'] = $this->t('User who uploaded');

    $data['file_usage']['table']['group'] = $this->t('File Usage');

    // Provide field-type-things to several base tables; on the core files table
    // ("file_managed") so that we can create relationships from files to
    // entities, and then on each core entity type base table so that we can
    // provide general relationships between entities and files.
    $data['file_usage']['table']['join'] = [
      'file_managed' => [
        'field' => 'fid',
        'left_field' => 'fid',
      ],
      // Link ourselves to the {node_field_data} table
      // so we can provide node->file relationships.
      'node_field_data' => [
        'field' => 'id',
        'left_field' => 'nid',
        'extra' => [['field' => 'type', 'value' => 'node']],
      ],
      // Link ourselves to the {users_field_data} table
      // so we can provide user->file relationships.
      'users_field_data' => [
        'field' => 'id',
        'left_field' => 'uid',
        'extra' => [['field' => 'type', 'value' => 'user']],
      ],
      // Link ourselves to the {comment_field_data} table
      // so we can provide comment->file relationships.
      'comment' => [
        'field' => 'id',
        'left_field' => 'cid',
        'extra' => [['field' => 'type', 'value' => 'comment']],
      ],
      // Link ourselves to the {taxonomy_term_field_data} table
      // so we can provide taxonomy_term->file relationships.
      'taxonomy_term_data' => [
        'field' => 'id',
        'left_field' => 'tid',
        'extra' => [['field' => 'type', 'value' => 'taxonomy_term']],
      ],
    ];

    // Provide a relationship between the files table and each entity type,
    // and between each entity type and the files table. Entity->file
    // relationships are type-restricted in the joins declared above, and
    // file->entity relationships are type-restricted in the relationship
    // declarations below.

    // Describes relationships between files and nodes.
    $data['file_usage']['file_to_node'] = [
      'title' => $this->t('Content'),
      'help' => $this->t('Content that is associated with this file, usually because this file is in a field on the content.'),
      // Only provide this field/relationship/etc.,
      // when the 'file_managed' base table is present.
      'skip base' => ['node_field_data', 'node_field_revision', 'users_field_data', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'id',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('Content'),
        'label' => $this->t('Content'),
        'base' => 'node_field_data',
        'base field' => 'nid',
        'relationship field' => 'id',
        'extra' => [['table' => 'file_usage', 'field' => 'type', 'operator' => '=', 'value' => 'node']],
      ],
    ];
    $data['file_usage']['node_to_file'] = [
      'title' => $this->t('File'),
      'help' => $this->t('A file that is associated with this node, usually because it is in a field on the node.'),
      // Only provide this field/relationship/etc.,
      // when the 'node' base table is present.
      'skip base' => ['file_managed', 'users_field_data', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'fid',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('File'),
        'label' => $this->t('File'),
        'base' => 'file_managed',
        'base field' => 'fid',
        'relationship field' => 'fid',
      ],
    ];

    // Describes relationships between files and users.
    $data['file_usage']['file_to_user'] = [
      'title' => $this->t('User'),
      'help' => $this->t('A user that is associated with this file, usually because this file is in a field on the user.'),
      // Only provide this field/relationship/etc.,
      // when the 'file_managed' base table is present.
      'skip base' => ['node_field_data', 'node_field_revision', 'users_field_data', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'id',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('User'),
        'label' => $this->t('User'),
        'base' => 'users',
        'base field' => 'uid',
        'relationship field' => 'id',
        'extra' => [['table' => 'file_usage', 'field' => 'type', 'operator' => '=', 'value' => 'user']],
      ],
    ];
    $data['file_usage']['user_to_file'] = [
      'title' => $this->t('File'),
      'help' => $this->t('A file that is associated with this user, usually because it is in a field on the user.'),
      // Only provide this field/relationship/etc.,
      // when the 'users' base table is present.
      'skip base' => ['file_managed', 'node_field_data', 'node_field_revision', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'fid',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('File'),
        'label' => $this->t('File'),
        'base' => 'file_managed',
        'base field' => 'fid',
        'relationship field' => 'fid',
      ],
    ];

    // Describes relationships between files and comments.
    $data['file_usage']['file_to_comment'] = [
      'title' => $this->t('Comment'),
      'help' => $this->t('A comment that is associated with this file, usually because this file is in a field on the comment.'),
      // Only provide this field/relationship/etc.,
      // when the 'file_managed' base table is present.
      'skip base' => ['node_field_data', 'node_field_revision', 'users_field_data', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'id',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('Comment'),
        'label' => $this->t('Comment'),
        'base' => 'comment_field_data',
        'base field' => 'cid',
        'relationship field' => 'id',
        'extra' => [['table' => 'file_usage', 'field' => 'type', 'operator' => '=', 'value' => 'comment']],
      ],
    ];
    $data['file_usage']['comment_to_file'] = [
      'title' => $this->t('File'),
      'help' => $this->t('A file that is associated with this comment, usually because it is in a field on the comment.'),
      // Only provide this field/relationship/etc.,
      // when the 'comment' base table is present.
      'skip base' => ['file_managed', 'node_field_data', 'node_field_revision', 'users_field_data', 'taxonomy_term_field_data'],
      'real field' => 'fid',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('File'),
        'label' => $this->t('File'),
        'base' => 'file_managed',
        'base field' => 'fid',
        'relationship field' => 'fid',
      ],
    ];

    // Describes relationships between files and taxonomy_terms.
    $data['file_usage']['file_to_taxonomy_term'] = [
      'title' => $this->t('Taxonomy Term'),
      'help' => $this->t('A taxonomy term that is associated with this file, usually because this file is in a field on the taxonomy term.'),
      // Only provide this field/relationship/etc.,
      // when the 'file_managed' base table is present.
      'skip base' => ['node_field_data', 'node_field_revision', 'users_field_data', 'comment_field_data', 'taxonomy_term_field_data'],
      'real field' => 'id',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('Taxonomy Term'),
        'label' => $this->t('Taxonomy Term'),
        'base' => 'taxonomy_term_data',
        'base field' => 'tid',
        'relationship field' => 'id',
        'extra' => [['table' => 'file_usage', 'field' => 'type', 'operator' => '=', 'value' => 'taxonomy_term']],
      ],
    ];
    $data['file_usage']['taxonomy_term_to_file'] = [
      'title' => $this->t('File'),
      'help' => $this->t('A file that is associated with this taxonomy term, usually because it is in a field on the taxonomy term.'),
      // Only provide this field/relationship/etc.,
      // when the 'taxonomy_term_data' base table is present.
      'skip base' => ['file_managed', 'node_field_data', 'node_field_revision', 'users_field_data', 'comment_field_data'],
      'real field' => 'fid',
      'relationship' => [
        'id' => 'standard',
        'title' => $this->t('File'),
        'label' => $this->t('File'),
        'base' => 'file_managed',
        'base field' => 'fid',
        'relationship field' => 'fid',
      ],
    ];

    // Provide basic fields from the {file_usage} table to all of the base tables
    // we've declared joins to, because there is no 'skip base' property on these
    // fields.
    $data['file_usage']['module'] = [
      'title' => $this->t('Module'),
      'help' => $this->t('The module managing this file relationship.'),
      'field' => [
        'id' => 'standard',
       ],
      'filter' => [
        'id' => 'string',
      ],
      'argument' => [
        'id' => 'string',
      ],
      'sort' => [
        'id' => 'standard',
      ],
    ];
    $data['file_usage']['type'] = [
      'title' => $this->t('Entity type'),
      'help' => $this->t('The type of entity that is related to the file.'),
      'field' => [
        'id' => 'standard',
       ],
      'filter' => [
        'id' => 'string',
      ],
      'argument' => [
        'id' => 'string',
      ],
      'sort' => [
        'id' => 'standard',
      ],
    ];
    $data['file_usage']['id'] = [
      'title' => $this->t('Entity ID'),
      'help' => $this->t('The ID of the entity that is related to the file.'),
      'field' => [
        'id' => 'numeric',
      ],
      'argument' => [
        'id' => 'numeric',
      ],
      'filter' => [
        'id' => 'numeric',
      ],
      'sort' => [
        'id' => 'standard',
      ],
    ];
    $data['file_usage']['count'] = [
      'title' => $this->t('Use count'),
      'help' => $this->t('The number of times the file is used by this entity.'),
      'field' => [
        'id' => 'numeric',
       ],
      'filter' => [
        'id' => 'numeric',
      ],
      'sort' => [
        'id' => 'standard',
      ],
    ];
    $data['file_usage']['entity_label'] = [
      'title' => $this->t('Entity label'),
      'help' => $this->t('The label of the entity that is related to the file.'),
      'real field' => 'id',
      'field' => [
        'id' => 'entity_label',
        'entity type field' => 'type',
      ],
    ];

    return $data;
  }

}

Аватар пользователя marassa marassa 5 февраля 2022 в 15:10

Да, именно так. Все остальные изменения были в тестах. Кэш ведь сбросили?
Я проверял с представлением по контенту со связью на файлы, не наоборот.

Аватар пользователя dragondesign dragondesign 5 февраля 2022 в 15:21

Да, кеш сбросил. Представление такое-же
Пишет по прежнему...
Файл, связанный с этим материалом, обычно потому, что файл находится в каком-либо поле материала.
Обработчик для этого элемента сломан или отсутствует. Следующие детали доступны:
Enabling the appropriate module may solve this issue. Otherwise, check to see if there is a module update available.
У меня D 9.3.5

Аватар пользователя dragondesign dragondesign 5 февраля 2022 в 17:11

Все работает! Спасибо!
Детская ошибка была, ставил через композер от рута... а в ftp закидывал от другого пользователя... не заметил что не перезаписалось, сейчас переаписал файлом с изменениями и вуаля, работает.
Но все же.... что же они этот косяк уже 6 лет держат.... Smile

Аватар пользователя marassa marassa 5 февраля 2022 в 17:19
1

dragondesign wrote: что же они этот косяк уже 6 лет держат....

Я привык. Уже пять лет тащу из версии в версию три патча, исправляющих очевидные косяки в ядре. Ну что делать, главное что патчи есть! Wink

Аватар пользователя ivnish ivnish 5 февраля 2022 в 12:32

Внутри body inline-изображения. Они вообще могут в базе нигде не числиться, кроме таблицы с содержанием поля body. Тут надо или отдельные поля вводить для картинок или написать свой плагин поля для views который будет вытаскивать картинки из body и выводить как поле

Аватар пользователя Andruxa Andruxa 5 февраля 2022 в 12:42

Можно еще вывести поле body, включив в его настройках фильтр html-тегов, оставив в разрешенных только тег <img>

Аватар пользователя dragondesign dragondesign 5 февраля 2022 в 12:48

Это не так, начиная с определенной версии D8, все загружаемые картинки в ЛЮБОЕ поле... будь то body являются сущностью со своим FID и связями.
Вот что мне удалось вытащить используя views, file
Вот, эти фотки в body:

Такие настройки views

Результат

Но вот никак не вытащить содержимое остальных полей ноды...

При попытке сделать связь, выдает ошибку

Как вытащить... вот в чем вопрос....

Аватар пользователя marassa marassa 5 февраля 2022 в 12:35

ivnish wrote: Внутри body inline-изображения. Они вообще могут в базе нигде не числиться, кроме таблицы с содержанием поля body.

А точно? Если, конечно, речь не про изображения, хотлинкнутые с других сайтов.

Аватар пользователя voviko voviko 5 февраля 2022 в 13:38

Попробуйте с заднего входа. Например через extra field.
Те у вас будет вьюха с тизерами и вьюха с файлами, которая крепиться к тизеру.