<?php
/*
 * OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
 * Copyright (C) DevCode s.r.l.
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <https://www.gnu.org/licenses/>.
 */

include_once __DIR__.'/../../core.php';

if (empty($id_record)) {
    echo '
    <table width="100%" class="datatables table table-striped table-hover table-condensed table-bordered">
        <thead>
            <tr>
                <th width="10%">'.tr('Numero').'</th>
                <th>'.tr('Nome del file').'</th>
            </tr>
        </thead>
        <tbody>';

    for ($c = 1; $c <= count($cmp); ++$c) {
        echo '
            <tr class="clickable" onclick="openLink(event, \''.base_path().'/editor.php?id_module='.$id_module.'&id_record='.$c.'\')">
                <td>'.$c.'</td>
                <td>'.$cmp[$c - 1][0].'</td>
			</tr>';
    }
    echo '
	    </tbody>
	</table>';
} else {
    ?>
    <form action="" method="post" id="edit-form" enctype="multipart/form-data">
        <input type="hidden" name="backto" value="record-edit">
        <input type="hidden" name="op" value="update">

        <!-- DATI ANAGRAFICI -->
        <div class="panel panel-primary">
            <div class="panel-heading">
                <h3 class="panel-title"><?php echo tr('Componente'); ?></h3>
            </div>

            <div class="panel-body">

                <div class="row">
                    <div class="col-md-6">
                        {[ "type": "text", "label": "<?php echo tr('Nome file'); ?>", "name": "nomefile", "required": 1, "value": "$nomefile$", "readonly": 1 ]}
                    </div>
                </div>


                <div class="row">
                    <div class="col-md-12">
                        {[ "type": "textarea", "label": "<?php echo tr('Contenuto'); ?>", "name": "contenuto", "required": 1, "class": "autosize", "value": "$contenuto$" ]}
                    </div>
                </div>

            </div>
        </div>
    </form>

    <a class="btn btn-danger ask" data-backto="record-list" data-nomefile="<?php echo $record['nomefile']; ?>">
        <i class="fa fa-trash"></i> <?php echo tr('Elimina'); ?>
    </a>

<?php
}