Điểm:0

Referencing media from theme settings and display it on front page

lá cờ mx

In a custom subtheme of classy base theme, I made a theme setting for referencing an image media file. Contents of file theme-settings.php:

<?php
use Drupal\Core\Form\FormStateInterface;
use Drupal\Core\Theme\ThemeSettings;
use Drupal\system\Form\ThemeSettingsForm;
use Drupal\Core\Form;
function mytheme_form_system_theme_settings_alter(&$form, \Drupal\Core\Form\FormStateInterface $form_state) {

$opts = [
'#type'          => 'entity_autocomplete',
'#title'         => t("Image on startpage"),
'#description'   => t("Referencing an image."),
'#target_type'   => 'media',
'#selection_settings' => ['target_bundles' => ['image']],
];
if ($default_id = theme_get_setting('startpage_image')) {
// element stores an int ID, but default value has to be the loaded entity
$image = \Drupal::entityTypeManager()->getStorage('media')->load($default_id);
$opts['#default_value'] = $image;
}
$form['startpage_image'] = $opts;
}
?>

Contents of file mytheme.theme:

<?php

function mytheme_preprocess_page(&$variables) {
$media_id = theme_get_setting('startpage_image');
$media = \Drupal::entityTypeManager()->getStorage('media')->load($media_id);
$variables['media_build'] = \Drupal::entityTypeManager()->getViewBuilder('media')->view($media, 'media.full');
}

?>

And finally in the template page--front.html.twig the image is called by {{ startpage_image }}. But unfortunately, the image isn't shown (all caches rebuilt and flushed multiple times). In the last line in file mytheme.theme I also tried view($media, 'full') because I wasn't sure if media.full is the correct display mode that is built in into media core module — but this as well wasn't successfull.

Why is my code not working?

Điểm:1
lá cờ li

Trước tiên, bạn nên thêm một bài kiểm tra để xem đó có phải là trang chủ hay không bằng cách sử dụng

\Drupal::service('path.matcher')->isFrontPage()

Sau đó, nếu bạn thêm một biến trong hook_page ví dụ như $variables['media_build'] bạn có thể vào cành cây với {{media_build}}.

Madam Adam avatar
lá cờ mx
Cảm ơn bạn, bây giờ nó đang hoạt động!

Đă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.