Files
yii2/framework/views/_addColumns.php

25 lines
445 B
PHP

<?php
/**
* @var \yii\web\View $this
* @var array $fields
* @var string $table
* @var array $foreignKeys
*/
?>
<?php foreach ($fields as $field): ?>
$this->addColumn('<?=
$table
?>', '<?=
$field['property']
?>', $this-><?=
$field['decorators']
?>);
<?php endforeach;
echo $this->render('_addForeignKeys', [
'table' => $table,
'foreignKeys' => $foreignKeys,
]);