Project

General

Profile

Download (5.57 KB) Statistics
| Branch: | Tag: | Revision:
1
<?php
2
/*
3
	interfaces_wireless.php
4
*/
5
/* ====================================================================
6
 *	Copyright (c)  2004-2015  Electric Sheep Fencing, LLC. All rights reserved.
7
 *	Copyright (c)  2010 Erik Fonnesbeck
8
 *
9
 *	Redistribution and use in source and binary forms, with or without modification,
10
 *	are permitted provided that the following conditions are met:
11
 *
12
 *	1. Redistributions of source code must retain the above copyright notice,
13
 *		this list of conditions and the following disclaimer.
14
 *
15
 *	2. Redistributions in binary form must reproduce the above copyright
16
 *		notice, this list of conditions and the following disclaimer in
17
 *		the documentation and/or other materials provided with the
18
 *		distribution.
19
 *
20
 *	3. All advertising materials mentioning features or use of this software
21
 *		must display the following acknowledgment:
22
 *		"This product includes software developed by the pfSense Project
23
 *		 for use in the pfSense software distribution. (http://www.pfsense.org/).
24
 *
25
 *	4. The names "pfSense" and "pfSense Project" must not be used to
26
 *		 endorse or promote products derived from this software without
27
 *		 prior written permission. For written permission, please contact
28
 *		 coreteam@pfsense.org.
29
 *
30
 *	5. Products derived from this software may not be called "pfSense"
31
 *		nor may "pfSense" appear in their names without prior written
32
 *		permission of the Electric Sheep Fencing, LLC.
33
 *
34
 *	6. Redistributions of any form whatsoever must retain the following
35
 *		acknowledgment:
36
 *
37
 *	"This product includes software developed by the pfSense Project
38
 *	for use in the pfSense software distribution (http://www.pfsense.org/).
39
 *
40
 *	THIS SOFTWARE IS PROVIDED BY THE pfSense PROJECT ``AS IS'' AND ANY
41
 *	EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
42
 *	IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
43
 *	PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE pfSense PROJECT OR
44
 *	ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
45
 *	SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
46
 *	NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
47
 *	LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
48
 *	HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
49
 *	STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
50
 *	ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
51
 *	OF THE POSSIBILITY OF SUCH DAMAGE.
52
 *
53
 *	====================================================================
54
 *
55
 */
56
/*
57
	pfSense_MODULE: interfaces_assign
58
*/
59

    
60
##|+PRIV
61
##|*IDENT=page-interfaces-wireless
62
##|*NAME=Interfaces: Wireless page
63
##|*DESCR=Allow access to the 'Interfaces: Wireless' page.
64
##|*MATCH=interfaces_wireless.php*
65
##|-PRIV
66

    
67
require("guiconfig.inc");
68

    
69
if (!is_array($config['wireless'])) {
70
	$config['wireless'] = array();
71
}
72
if (!is_array($config['wireless']['clone'])) {
73
	$config['wireless']['clone'] = array();
74
}
75

    
76
$a_clones = &$config['wireless']['clone'];
77

    
78
function clone_inuse($num) {
79
	global $config, $a_clones;
80

    
81
	$iflist = get_configured_interface_list(false, true);
82

    
83
	foreach ($iflist as $if) {
84
		if ($config['interfaces'][$if]['if'] == $a_clones[$num]['cloneif']) {
85
			return true;
86
		}
87
	}
88

    
89
	return false;
90
}
91

    
92
if ($_GET['act'] == "del") {
93
	/* check if still in use */
94
	if (clone_inuse($_GET['id'])) {
95
		$input_errors[] = gettext("This wireless clone cannot be deleted because it is assigned as an interface.");
96
	} else {
97
		mwexec("/sbin/ifconfig " . $a_clones[$_GET['id']]['cloneif'] . " destroy");
98
		unset($a_clones[$_GET['id']]);
99

    
100
		write_config();
101

    
102
		header("Location: interfaces_wireless.php");
103
		exit;
104
	}
105
}
106

    
107

    
108
$pgtitle = array(gettext("Interfaces"), gettext("Wireless"));
109
$shortcut_section = "wireless";
110
include("head.inc");
111

    
112
if ($input_errors)
113
	print_input_errors($input_errors); ?>
114

    
115
<?php
116
$tab_array = array();
117
$tab_array[] = array(gettext("Interface assignments"), false, "interfaces_assign.php");
118
$tab_array[] = array(gettext("Interface Groups"), false, "interfaces_groups.php");
119
$tab_array[] = array(gettext("Wireless"), true, "interfaces_wireless.php");
120
$tab_array[] = array(gettext("VLANs"), false, "interfaces_vlan.php");
121
$tab_array[] = array(gettext("QinQs"), false, "interfaces_qinq.php");
122
$tab_array[] = array(gettext("PPPs"), false, "interfaces_ppps.php");
123
$tab_array[] = array(gettext("GRE"), false, "interfaces_gre.php");
124
$tab_array[] = array(gettext("GIF"), false, "interfaces_gif.php");
125
$tab_array[] = array(gettext("Bridges"), false, "interfaces_bridge.php");
126
$tab_array[] = array(gettext("LAGG"), false, "interfaces_lagg.php");
127
display_top_tabs($tab_array);
128
?>
129

    
130
<div class="table-responsive">
131
	<table class="table table-striped table-hover table-condensed">
132
		<thead>
133
			<tr>
134
			  <th><?=gettext("Interface"); ?></th>
135
			  <th><?=gettext("Mode"); ?></th>
136
			  <th><?=gettext("Description"); ?></th>
137
			  <th></th>
138
			</tr>
139
		</thead>
140
		<tbody>
141
<?php
142

    
143
$i = 0;
144

    
145
foreach ($a_clones as $clone) {
146
?>
147
			<tr>
148
				<td>
149
					<?=htmlspecialchars($clone['cloneif'])?>
150
				</td>
151
				<td>
152
					<?= $wlan_modes[$clone['mode']]; ?>
153
				</td>
154
				<td>
155
					<?=htmlspecialchars($clone['descr'])?>
156
				</td>
157
				<td>
158
					<a class="fa fa-pencil"	title="<?=gettext('Edit WiFi interface')?>"	href="interfaces_wireless_edit.php?id=<?=$i?>"></a>
159
					<a class="fa fa-trash"	title="<?=gettext('Delete WiFi interface')?>"	href="interfaces_wireless.php?act=del&amp;id=<?=$i?>"></a>
160
				</td>
161
			</tr>
162
<?php
163
	$i++;
164
}
165
?>
166
		</tbody>
167
	</table>
168

    
169
	<nav class="action-buttons">
170
		<a href="interfaces_wireless_edit.php" class="btn btn-success btn-sm">
171
			<i class="fa fa-plus icon-embed-btn"></i>
172
			<?=gettext("Add")?></a>
173
	</nav>
174
</div>
175
<?php
176
include("foot.inc");
(100-100/230)