選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

_addColumns.php 327B

1234567891011121314
  1. <?php foreach ($fields as $field): ?>
  2. $this->addColumn('<?=
  3. $table
  4. ?>', '<?=
  5. $field['property']
  6. ?>', $this-><?=
  7. $field['decorators']
  8. ?>);
  9. <?php endforeach;
  10. echo $this->render('_addForeignKeys', [
  11. 'table' => $table,
  12. 'foreignKeys' => $foreignKeys,
  13. ]);