Add a missing file sip_profile_copy.php to the dev branch.
This commit is contained in:
@@ -0,0 +1,61 @@
|
||||
<div align='center'>
|
||||
|
||||
<table width="100%" border="0" cellpadding="6" cellspacing="0">
|
||||
<tr>
|
||||
<td align='left'><b>XMPP Manager</b><br>
|
||||
Utilizes the Jingle protocol. Jingle is an extension to the Jabber/XMPP protocol.
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
<br />
|
||||
|
||||
<table width='100%' border='0' cellpadding='0' cellspacing='0'>
|
||||
<tr>
|
||||
<th>Profile</th>
|
||||
<th>Context</th>
|
||||
<th>Status</th>
|
||||
<th>Enabled</th>
|
||||
<th>Description</th>
|
||||
<td align='right' width='42'>
|
||||
<?php if (permission_exists('xmpp_add')) { ?>
|
||||
<a href='v_profile_edit.php' alt='add'><?php echo $v_link_label_add; ?></a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
|
||||
$c = 0;
|
||||
$row_style["0"] = "row_style0";
|
||||
$row_style["1"] = "row_style1";
|
||||
|
||||
foreach($profiles_array as $profile){
|
||||
?>
|
||||
<tr>
|
||||
<td class='<?php echo $row_style[$c]; ?>'><?php echo $profile['profile_name']; ?> </td>
|
||||
<td class='<?php echo $row_style[$c]; ?>'><?php echo $profile['context']; ?> </td>
|
||||
<td class='<?php echo $row_style[$c]; ?>'><?php echo $profile['status']; ?> </td>
|
||||
<td class='<?php echo $row_style[$c]; ?>'><?php echo $profile['enabled']; ?> </td>
|
||||
<td class='<?php echo $row_style[$c]; ?>'><?php echo $profile['description']; ?> </td>
|
||||
<td align='right' width='42'>
|
||||
<?php if (permission_exists('xmpp_edit')) { ?>
|
||||
<a href='v_profile_edit.php?id=<?php echo $profile['xmpp_profile_uuid']; ?>' alt='edit'><?php echo $v_link_label_edit; ?></a>
|
||||
<?php } ?>
|
||||
<?php if (permission_exists('xmpp_delete')) { ?>
|
||||
<a href='v_profile_delete.php?id=<?php echo $profile['xmpp_profile_uuid']; ?>' onclick="return confirm('Do you really want to delete this?')"
|
||||
alt='delete'><?php echo $v_link_label_delete; ?></a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
<?php
|
||||
if ($c==0) { $c=1; } else { $c=0; }
|
||||
}
|
||||
?>
|
||||
<tr>
|
||||
<td colspan='6' align='right' width='42'>
|
||||
<?php if (permission_exists('xmpp_add')) { ?>
|
||||
<a href='v_profile_edit.php' alt='add'><?php echo $v_link_label_add; ?></a>
|
||||
<?php } ?>
|
||||
</td>
|
||||
</tr>
|
||||
</table>
|
||||
</div>
|
||||
Reference in New Issue
Block a user