update transfer

This commit is contained in:
Dario Rekowski on RockPI 2019-12-04 16:08:36 +00:00
parent 6ed50a146c
commit abfaf577ca
2 changed files with 47 additions and 0 deletions

View File

@ -0,0 +1,39 @@
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/
return [
// Container element used by control().
'inputContainer' => '<div class="form-group row showcase_row_area">{{content}}</div>',
// Label element when inputs are not nested inside the label.
'label' => '<div class="col-md-3 showcase_text_area">'
. '<label{{attrs}}>{{text}}</label>'
. '</div>',
// Generic input element.
'input' => '<div class="col-md-9 showcase_content_area">'
. '<input type="{{type}}" name="{{name}}"{{attrs}}/>'
. '</div>',
];
/*
<div class="form-group row showcase_row_area">
<div class="col-md-3 showcase_text_area">
<label for="inputAmount">Betrag in GDD</label>
</div>
<div class="col-md-9 showcase_content_area">
<input type="number" step="0.01" class="form-control" id="inputAmount" name="inputAmount" >
</div>
</div>
<div class="input number required">
<label for="amount">Amount</label>
<input type="number" name="amount" required="required" step="0.01" id="amount">
</div>
*/

View File

@ -0,0 +1,8 @@
<?php
/*
* To change this license header, choose License Headers in Project Properties.
* To change this template file, choose Tools | Templates
* and open the template in the editor.
*/