canyin-project/ybcy/vendor/yiisoft/yii2/views/_addColumns.php
2024-11-01 16:07:54 +08:00

15 lines
327 B
PHP

<?php foreach ($fields as $field): ?>
$this->addColumn('<?=
$table
?>', '<?=
$field['property']
?>', $this-><?=
$field['decorators']
?>);
<?php endforeach;
echo $this->render('_addForeignKeys', [
'table' => $table,
'foreignKeys' => $foreignKeys,
]);