Điểm:0

Programmatically add Views block to field group

lá cờ jp

I want to programmatically add a view to a field group I created using the field_group module. I created an group_articles tab field group.

When I do this something like hook_form_alter:

    $form['issues__articles'] = array(
      '#type' => 'fieldgroup',
      '#weight' => 0,
    );
    $form['issues__articles']['view'] = [
      '#type' => 'view',
      '#name' => 'view_admin',
      '#display_id' => 'block_1',
      '#weight' => 0,
    ];
    $form['issues__articles']['#group'] = 'group_articles';

My view is added to my premade group_articles group, inside a programmatically created fieldset. I can change fieldgroup in my code into details and this would also work. But I don't want a fieldset or details container I want the view without a container or a simple html element like div and then inside my group_articles tab.

Changing fieldgroup to html_element doesn't work and removing the first part like this:

$form['issues__articles']['view'] = [
  '#type' => 'view',
  '#name' => 'view_admin',
  '#display_id' => 'block_1',
  '#weight' => 0,
];
$form['issues__articles']['#group'] = 'group_articles';

Or:

$form['issues__articles'] = [
          '#type' => 'view',
          '#name' => 'view_admin',
          '#display_id' => 'block_1',
          '#weight' => 0,
        ];
        $form['issues__articles']['#group'] = 'group_articles';

Also doesn't work, how can I fix this?

Đăng câu trả lời

Hầu hết mọi người không hiểu rằng việc đặt nhiều câu hỏi sẽ mở ra cơ hội học hỏi và cải thiện mối quan hệ giữa các cá nhân. Ví dụ, trong các nghiên cứu của Alison, mặc dù mọi người có thể nhớ chính xác có bao nhiêu câu hỏi đã được đặt ra trong các cuộc trò chuyện của họ, nhưng họ không trực giác nhận ra mối liên hệ giữa câu hỏi và sự yêu thích. Qua bốn nghiên cứu, trong đó những người tham gia tự tham gia vào các cuộc trò chuyện hoặc đọc bản ghi lại các cuộc trò chuyện của người khác, mọi người có xu hướng không nhận ra rằng việc đặt câu hỏi sẽ ảnh hưởng—hoặc đã ảnh hưởng—mức độ thân thiện giữa những người đối thoại.