12 lines
288 B
PHP
12 lines
288 B
PHP
|
<?php
|
||
|
$formRandomValue = Cake\Utility\Security::randomString(8);
|
||
|
|
||
|
echo $this->Form->create($entity, ['id' => 'form-' . $formRandomValue]);
|
||
|
echo $this->element(
|
||
|
'genericElements/Form/metaTemplateForm',
|
||
|
[
|
||
|
'metaTemplate' => $metaTemplate,
|
||
|
]
|
||
|
);
|
||
|
echo $this->Form->end();
|
||
|
?>
|