您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

15 行
327B

  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. ]);