Drupal entity_load没有加载它的相关段落模块项

时间:2017-11-30 18:30:19

标签: drupal drupal-7 drupal-modules drupal-views

我已经为我的自定义内容类型安装并配置了段落模块。 对于段落模块,我有一些与内容类型相关联的字段。

我正在尝试加载有关此实体的所有信息。

因此,我使用下面的代码,

$node = entity_load('node', array(13), array(), false);

但问题是,它只加载节点而不加载与内容类型相关的项目。

我正在使用Drupal 7。

有人有这个想法吗?

1 个答案:

答案 0 :(得分:0)

您可以像这样加载段落字段:

class Comment < ApplicationRecord
  include Reportable

  before_create :create_moderation

  def create_moderation
    blog = self.blog
    self.build_moderation(blog: blog)
  end
end

灵感来自https://drupal.stackexchange.com/questions/229961/how-to-get-paragraph-field-values