commit
47a8f4f57e
|
@ -89,8 +89,10 @@ echo $this->Bootstrap->modal([
|
|||
'<div class="form-container">%s</div>',
|
||||
$combinedForm
|
||||
),
|
||||
'confirmText' => __('Create user'),
|
||||
'confirmFunction' => 'submitRegistration'
|
||||
'confirmButton' => [
|
||||
'text' => __('Create user'),
|
||||
'onclick' => 'submitRegistration',
|
||||
],
|
||||
]);
|
||||
?>
|
||||
</div>
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
{
|
||||
"version": "1.13",
|
||||
"version": "1.14",
|
||||
"application": "Cerebrate"
|
||||
}
|
||||
|
|
|
@ -132,8 +132,10 @@ echo $this->Bootstrap->modal([
|
|||
'bodyHtml' => $bodyHtml,
|
||||
'size' => $modalSize,
|
||||
'type' => $modalType,
|
||||
'confirmText' => __('Update meta-templates'),
|
||||
'confirmFunction' => 'updateMetaTemplate',
|
||||
'confirmButton' => [
|
||||
'text' => __('Update meta-templates'),
|
||||
'onclick' => 'updateMetaTemplate',
|
||||
],
|
||||
]);
|
||||
?>
|
||||
|
||||
|
|
|
@ -36,4 +36,4 @@ $modalOptions = array_merge($defaultOptions, $modalOptions ?? []);
|
|||
$modalOptions['bodyHtml'] = $bodyHTML;
|
||||
|
||||
echo $this->Bootstrap->modal($modalOptions);
|
||||
?>
|
||||
|
||||
|
|
Loading…
Reference in New Issue