9 lines
236 B
PHP
9 lines
236 B
PHP
<?php
|
|
$this->layout('partials/file/view', [
|
|
'title' => '檢視設定檔',
|
|
'nav' => 'configurations',
|
|
'list' => $list ?? [],
|
|
'file' => $file ?? '',
|
|
'type' => $type ?? 'plaintext',
|
|
'content' => $content ?? '',
|
|
]);
|