Drupal 8에서 모듈에 대한 도움말 페이지 만들기
drush generate module
나는 그것을 테스터 도우미라고 부릅니다.
.module
파일을 열고 다음 템플릿을 사용합니다.<?php
use Drupal\Core\Routing\RouteMatchInterface;
/**
* Implements hook_help().
*/
function tester_helper_help($route_name, RouteMatchInterface $route_match) {
switch ($route_name) {
case 'help.page.tester_helper':
$output = '';
$output .= '<h3>' . t('About') . '</h3>';
$output .= '<p>' . t('The module is example:') . '</p';
$output .= '<ul>';
$output .= '<li>' . t('To show simple hook template') . '</li>';
$output .= '<li>' . t('To show how the page looks like') . '</li>';
$output .= '<li>' . t('To show it is very easy to create help page for module') . '</li>';
$output .= '</ul>';
return $output;
default:
}
}
tester_helper
를 모듈의 시스템 이름으로 변경하십시오.변수
$output
에 페이지 도움말의 내용을 작성합니다.이 페이지는 저에게 다음과 같습니다.
Reference
이 문제에 관하여(Drupal 8에서 모듈에 대한 도움말 페이지 만들기), 우리는 이곳에서 더 많은 자료를 발견하고 링크를 클릭하여 보았다 https://dev.to/vadimfilimonov/create-a-help-page-for-a-module-in-drupal-8-4bk8텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
우수한 개발자 콘텐츠 발견에 전념 (Collection and Share based on the CC Protocol.)