openstamanager/plugins/statistiche_anagrafiche/edit.php

75 lines
2.3 KiB
PHP
Raw Normal View History

2019-07-10 17:22:39 +02:00
<?php
2020-09-07 15:04:06 +02:00
/*
* OpenSTAManager: il software gestionale open source per l'assistenza tecnica e la fatturazione
2021-01-20 15:08:51 +01:00
* Copyright (C) DevCode s.r.l.
2020-09-07 15:04:06 +02:00
*
* 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/>.
*/
2019-07-10 17:22:39 +02:00
include_once __DIR__.'/../../core.php';
echo '
<hr>
<div class="box box-warning">
<div class="box-header">
<h4 class="box-title">
'.tr('Periodi temporali').'
</h4>
<div class="box-tools pull-right">
<button class="btn btn-warning btn-xs" onclick="add_calendar()">
<i class="fa fa-plus"></i> '.tr('Aggiungi periodo').'
</button>
<button type="button" class="btn btn-box-tool" data-widget="collapse">
<i class="fa fa-minus"></i>
</button>
</div>
</div>
2020-09-07 15:04:06 +02:00
2019-07-10 17:22:39 +02:00
<div class="box-body collapse in" id="calendars">
2020-09-07 15:04:06 +02:00
2019-07-10 17:22:39 +02:00
</div>
</div>
<div id="widgets">
2020-09-07 15:04:06 +02:00
2019-07-11 12:04:22 +02:00
</div>';
2019-07-10 17:22:39 +02:00
2019-07-11 12:04:22 +02:00
$statistiche = Modules::get('Statistiche');
2019-07-10 17:22:39 +02:00
if ($statistiche != null) {
echo '
<script src="'.$statistiche->fileurl('js/functions.js').'"></script>
<script src="'.$statistiche->fileurl('js/manager.js').'"></script>
<script src="'.$statistiche->fileurl('js/calendar.js').'"></script>
<script src="'.$statistiche->fileurl('js/stat.js').'"></script>
<script src="'.$statistiche->fileurl('js/stats/table.js').'"></script>
<script src="'.$statistiche->fileurl('js/stats/widget.js').'"></script>';
}
2021-02-18 18:48:44 +01:00
echo '
2019-07-11 12:04:22 +02:00
<script>
var local_url = "'.str_replace('edit.php', '', $structure->fileurl('edit.php')).'";
2019-07-10 17:22:39 +02:00
2019-07-11 12:04:22 +02:00
function init_calendar(calendar) {
var widgets = new Widget(calendar, "info.php", {}, "#widgets");
2020-09-07 15:04:06 +02:00
2019-07-10 17:22:39 +02:00
calendar.addElement(widgets);
}
</script>';
if ($statistiche != null) {
echo '
<script src="'.$statistiche->fileurl('js/init.js').'"></script>';
}