1<?php
2
3/**
4 *	VRF export
5 */
6
7# include required scripts
8require_once( dirname(__FILE__) . '/../../../functions/functions.php' );
9
10# initialize user object
11$Database 	= new Database_PDO;
12$User 		= new User ($Database);
13
14# verify that user is logged in
15$User->check_user_session();
16
17?>
18
19<!-- header -->
20<div class="pHeader"><?php print _("Select VRF fields to export"); ?></div>
21
22<!-- content -->
23<div class="pContent">
24
25<?php
26
27# print
28print '<form id="selectExportFields">';
29
30# table
31print "	<table class='table table-striped table-condensed'>";
32
33print "	<tr>";
34print "	<th>"._('Name')."</th>";
35print "	<th>"._('RD')."</th>";
36print "	<th>"._('Description')."</th>";
37print "	</tr>";
38
39print "	<tr>";
40print "	<td><input type='checkbox' name='name' checked title='"._('Mandatory')."'></td>";
41print "	<td><input type='checkbox' name='rd' checked> </td>";
42print "	<td><input type='checkbox' name='description' checked> </td>";
43print "	</tr>";
44
45print '</table>';
46print '</form>';
47
48?>
49
50</div>
51
52<!-- footer -->
53<div class="pFooter">
54	<div class="btn-group">
55		<button class="btn btn-sm btn-default hidePopups"><?php print _('Cancel'); ?></button>
56		<button class="btn btn-sm btn-success" id="dataExportSubmit" data-type="vrf"><i class="fa fa-upload"></i> <?php print _('Export'); ?></button>
57	</div>
58</div>
59