12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970 |
- <table width="100%" border="0" cellpadding="0" cellspacing="0">
- <tr>
- <td align='left'><b><?php echo $text['header-xmpp']?></b><br>
- <?php echo $text['description-xmpp-list']?>
- </td>
- </tr>
- </table>
- <br />
- <table class="tr_hover" width='100%' border='0' cellpadding='0' cellspacing='0'>
- <tr>
- <th><?php echo $text['label-profile_name']?></th>
- <th><?php echo $text['label-context']?></th>
- <th><?php echo $text['label-status']?></th>
- <th><?php echo $text['label-enabled']?></th>
- <th><?php echo $text['label-description']?></th>
- <td class='list_control_icons'>
- <?php if (permission_exists('xmpp_add')) { ?>
- <a href='xmpp_profile_edit.php' alt='<?php echo $text['button-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_link = (permission_exists('xmpp_edit')) ? "href='xmpp_profile_edit.php?id=".escape($profile['xmpp_profile_uuid'])."'" : null;
- ?>
- <tr <?php echo $tr_link; ?>>
- <td class='<?php echo $row_style[$c]; ?>'>
- <?php
- if (permission_exists('xmpp_edit')) {
- ?><a href='xmpp_profile_edit.php?id=<?php echo escape($profile['xmpp_profile_uuid']); ?>'><?php echo $profile['profile_name']; ?></a><?php
- }
- else {
- echo escape($profile['profile_name']);
- }
- ?>
- </td>
- <td class='<?php echo $row_style[$c]; ?>'><?php echo escape($profile['context']); ?> </td>
- <td class='<?php echo $row_style[$c]; ?>'><?php echo escape($profile['status']); ?> </td>
- <td class='<?php echo $row_style[$c]; ?>'><?php echo escape(ucwords($profile['enabled'])); ?> </td>
- <td class='row_stylebg'><?php echo escape($profile['description']); ?> </td>
- <td class='list_control_icons'>
- <?php
- if (permission_exists('xmpp_edit')) {
- ?><a href='xmpp_profile_edit.php?id=<?php echo escape($profile['xmpp_profile_uuid']); ?>' alt='<?php echo $text['button-edit']?>'><?php echo $v_link_label_edit; ?></a><?php
- }
- if (permission_exists('xmpp_delete')) {
- ?><a href='profile_delete.php?id=<?php echo escape($profile['xmpp_profile_uuid']); ?>' onclick="return confirm('<?php echo $text['confirm-delete']?>')" alt='<?php echo $text['button-delete']?>'><?php echo $v_link_label_delete; ?></a><?php
- }
- ?>
- </td>
- </tr>
- <?php
- if ($c==0) { $c=1; } else { $c=0; }
- }
- ?>
- <tr>
- <td colspan='6' class='list_control_icons'>
- <?php if (permission_exists('xmpp_add')) { ?>
- <a href='xmpp_profile_edit.php' alt='<?php echo $text['button-add']?>'><?php echo $v_link_label_add; ?></a>
- <?php } ?>
- </td>
- </tr>
- </table>
- <br><br>
|