|
1
|
<?php |
|
2
|
/** |
|
3
|
* @var \AC\Renderable $section
|
|
4
|
*/ |
|
5
|
?> |
|
6
|
<table class="form-table ac-form-table settings"> |
|
7
|
<tbody> |
|
8
|
|
|
9
|
<?php foreach ( $this->sections as $section ) : ?> |
|
10
|
<?= $section->render(); ?> |
|
11
|
<?php endforeach; ?> |
|
12
|
|
|
13
|
</tbody> |
|
14
|
</table>
|