Рендер массив

Главные вкладки

Аватар пользователя Никки Никки 20 апреля 2023 в 12:36

Подскажите, пожалуйста, каким должен быть рендер массив, чтобы вывести вот такой код

<ul>
        <li>parent1</li>
        <li>parent2
                <ul>
                        <li>child1</li>
                        <li>child2</li>
                </ul>
        </li>
        <li>parent3</li>
</ul>

Лучший ответ

Аватар пользователя OldWarrior OldWarrior 22 апреля 2023 в 2:37
1
<?php
    $build
['test'] = [
      
'#theme' => 'item_list',
      
'#list_type' => 'ul',
      
'#title' => 'Parent list',
      
'#items' => [
        
'parent1',
        [ [ 
'#markup' => 'parent2'],
          [ 
'#theme' => 'item_list',
            
'#list_type' => 'ul',
            
'#title' => 'Child List',
            
'#items' => ['child1''child1'],
            
'#attributes' => ['class' => 'child-list'],
          ],
        ],
        
'parent3',
      ],
      
'#attributes' => ['class' => 'parent-list'],
    ];
?>

Комментарии

Аватар пользователя OldWarrior OldWarrior 22 апреля 2023 в 2:37
1
<?php
    $build
['test'] = [
      
'#theme' => 'item_list',
      
'#list_type' => 'ul',
      
'#title' => 'Parent list',
      
'#items' => [
        
'parent1',
        [ [ 
'#markup' => 'parent2'],
          [ 
'#theme' => 'item_list',
            
'#list_type' => 'ul',
            
'#title' => 'Child List',
            
'#items' => ['child1''child1'],
            
'#attributes' => ['class' => 'child-list'],
          ],
        ],
        
'parent3',
      ],
      
'#attributes' => ['class' => 'parent-list'],
    ];
?>