Drupal 8에서 테이블 렌더링은 여전히 Drupal 7과 비슷합니다. Drupal이 각각 a <tr>
와 <td>
s 로 변환하는 PHP에서 다차원 배열의 행과 열을 작성합니다 . 'data'
렌더 배열 요소를 셀 데이터 (데이터 속성과 혼동하지 않아야 함)로 추가 할 수있는 이 혼동되는 Drupalism이 여전히 알려져 있습니다.
개발자가 셀의 내용을 렌더링하기 위해 '데이터'를 사용하기로 선택한 사이트가 있었지만 <td>
데이터 주위에 클래스를 추가하는 방법을 알 수는 없습니다 .
Table.php 의 소스 코드와 문서를 읽었 으며 새로운 것을 알고 #wrapper_attributes
있지만 이것을 깨뜨릴 수는 없습니다.
클래스를 추가하기 위해 적어도 네 가지 방법을 시도했지만 아무 효과가 없습니다.
$table['row-' . $row_id] = [
// Option 1: Class appears on <tr> tag
'#attributes' => [
'class' => ['option-1-row-attributes'],
'id' => 'row-' . $row_id,
'no_striping' => TRUE,
],
// Option 2: Class appears on <td> tag of first column.
'item' => [
'#markup' => $row['my_item']->label(),
'#wrapper_attributes' => [
'class' => ['option-2-markup-wrapper-attributes'],
],
],
// In the following section, the only item that works is
// the class on the <a> tag.
'edit_operation' => [
'data' => [
'#type' => 'link',
'#url' => Url::fromRoute('my_module.my_route', ['item' => $row_id]),
'#title' => $this->t('Edit'),
'#attributes' => [
// Option 3: Class appears on the anchor tag
'class' => ['use-ajax', 'option-3-link-attributes'],
'data-dialog-type' => 'modal',
'data-dialog-options' => Json::encode([
'width' => 700,
]),
],
// Option 4: Has no effect.
'#wrapper_attributes' => [
'class' => ['option-4-data-wrapper-attributes'],
],
],
// Option 5: Update: This appears to be the correct solution!
// Class appears on the <td>.
'#wrapper_attributes' => [
'class' => ['option-5-wrapper-attributes'],
],
// Option 6: Has no effect.
'#attributes' => [
'class' => ['option-6-attributes'],
],
// Option 7: Has no effect.
'class' => ['option-7-attributes'],
],
];