mirror of
https://github.com/devcode-it/openstamanager.git
synced 2024-12-14 09:25:31 +01:00
22 lines
435 B
PHP
Executable File
22 lines
435 B
PHP
Executable File
<?php
|
|
|
|
use Util\Ini;
|
|
|
|
include_once __DIR__.'/../../core.php';
|
|
|
|
function crea_form_componente($contenuto)
|
|
{
|
|
$fields = Ini::getFields($contenuto);
|
|
$title = array_shift($fields);
|
|
|
|
foreach ($fields as $key => $value) {
|
|
$fields[$key] = '<div class="col-md-4">'.$value.'</div>';
|
|
}
|
|
|
|
echo $title.'
|
|
<div class="row">
|
|
'.implode(PHP_EOL, $fields).'
|
|
<script>restart_inputs()</script>
|
|
</div>';
|
|
}
|