BiFace_Server_Lite/vendor/yiisoft/yii2/views/_addColumns.php
2020-03-27 10:13:51 +07: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,
]);