{# /** * CakePHP(tm) : Rapid Development Framework (https://cakephp.org) * Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * * Licensed under The MIT License * For full copyright and license information, please see the LICENSE.txt * Redistributions of files must retain the above copyright notice. * * @copyright Copyright (c) Cake Software Foundation, Inc. (https://cakefoundation.org) * @link https://cakephp.org CakePHP(tm) Project * @since 2.0.0 * @license https://www.opensource.org/licenses/mit-license.php MIT License */ #} {% set fields = Bake.filterFields(fields, schema, modelObject) %}
Form->create(${{ singularVar }}) ?>
Form->control('{{ field }}', ['options' => ${{ keyFields[field] }}, 'empty' => true]); {{- "\n" }} {%- else %} echo $this->Form->control('{{ field }}', ['options' => ${{ keyFields[field] }}]); {{- "\n" }} {%- endif %} {%- elseif field not in ['created', 'modified', 'updated'] %} {%- set fieldData = Bake.columnData(field, schema) %} {%- if fieldData.type in ['date', 'datetime', 'time'] and fieldData.null %} echo $this->Form->control('{{ field }}', ['empty' => true]); {{- "\n" }} {%- else %} echo $this->Form->control('{{ field }}'); {{- "\n" }} {%- endif %} {%- endif %} {%- endif %} {%- endfor %} {%- if associations.BelongsToMany is defined %} {%- for assocName, assocData in associations.BelongsToMany %} echo $this->Form->control('{{ assocData.property }}._ids', ['options' => ${{ assocData.variable }}]); {{- "\n" }} {%- endfor %} {% endif %} ?>
Form->button(__('Submit')) ?> Form->end() ?>