Drupal 8 hook_menu() для рендеринга hook_theme()
Я наконец погрузился в проект Drupal 8. Хотя в моем модуле я не могу понять, как визуализировать шаблон из моего модуля на основе маршрута.
В Drupal 7 я бы обычно так делал
custom.module
function union_views_menu() {
$items = array();
$items['home'] = array(
'title' => 'Home',
'description' => 'home apge',
'page callback' => 'home_page',
'access arguments' => array( 'access content'),
'type' => MENU_CALLBACK
);
return $items;
}
function home_page() {
return theme('home_page');
}
function union_views_theme(){
return array(
'home_page' => array(
'template' => 'templates/home-page'
)
);
}
И тогда у меня будет шаблон в папке с шаблонами
С Drupal 8 я попал сюда:
custom.routing.yml
custom:
path: /home
defaults:
_controller: Drupal\custom\Controller\CustomController::custom
requirements:
_permission: 'access content'
SRC /Controller/CustomController.php
namespace Drupal\custom\Controller;
class CustomController {
public function custom(){
return array(
'#title' => 'Custom Theme',
'#markup' => 'This is a content.'
);
}
}
И все прекрасно работает для того, чтобы добраться до маршрута. Но я не могу понять, как создать функцию hook_theme для моего hook_menu для использования в качестве обратного вызова.
1 ответ
Решение
Догадаться
Добавить custom.module
function custom_theme() {
$theme['home_page'] = [
'variables' => ['name' => NULL],
'template' => 'home_page'
];
return $theme;
}
в моем контроллере заменил '#markup' на:
'#theme' => 'home_page'