This repository has been archived by the owner on Feb 23, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 15
/
amImportMass.php
executable file
·53 lines (45 loc) · 1.72 KB
/
amImportMass.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
<?php
/*****************************************************
* Projet : Okovision - Supervision chaudiere OeKofen
* Auteur : Stawen Dronek
* Utilisation commerciale interdite sans mon accord
******************************************************/
include_once 'config.php';
include_once '_templates/header.php';
include_once '_templates/menu.php';
?>
<div class="container theme-showcase" role="main">
<br/>
<div class="page-header">
<h2><?php echo session::getInstance()->getLabel( 'lang.text.page.import.title') ?></h2>
</div>
<div class="well">
<?php echo session::getInstance()->getLabel( 'lang.text.page.import.action') ?>
</div>
<button type="button" id="bt_import" class="btn btn-xs btn-default" >
<span class="glyphicon glyphicon-cloud-download" aria-hidden="true"></span>
<?php echo session::getInstance()->getLabel( 'lang.text.page.import.bt') ?>
</button>
<div id="inwork-makeupdate" style="display: none;">
<br/>
<br/><span class="glyphicon glyphicon-refresh glyphicon-spin"></span>
<?php echo session::getInstance()->getLabel( 'lang.text.page.import.inprogress') ?>
</div>
<table id="listeFichierImport" class="table table-hover">
<thead>
<tr>
<th class="col-md-10"><?php echo session::getInstance()->getLabel( 'lang.text.page.import.table.title') ?></th>
<th class="col-md-2"></th>
</tr>
</thead>
<tbody>
</tbody>
</table>
</div>
<?php
include(__DIR__ . '/_templates/footer.php');
?>
<!--appel des scripts personnels de la page -->
<script src="js/amImportMass.js"></script>
</body>
</html>