| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <?php
- if (!empty($_SESSION['error_msg'])) {
- ?>
- <script type="text/javascript">
- $(function() {
- $( "#dialog:ui-dialog" ).dialog( "destroy" );
- $( "#dialog-message" ).dialog({
- modal: true,
- buttons: {
- Ok: function() {
- $( this ).dialog( "close" );
- }
- }
- });
- });
- </script>
- <div id="dialog-message" title="Error">
- <p><?php echo $_SESSION['error_msg'] ?>.</p>
- </div>
- <?php
- unset($_SESSION['error_msg']);
- }
- ?>
- <table class="sub-menu">
- <tr>
- <td width="142px" style="padding: 16px 0 16px 6px">
- <button style="width:120px; padding: 2px 0px 2px 0px;" onclick="location.href='/add/user/'">Add User</button>
- <td><a style="padding: 0 4px 0 12px" class="select-controls" href='javascript:checkedAll("vstobjects");'> toggle all </a>
- <select style="margin:0 0 0 0px">
- <option>apply to selected</option>
- <option>rebuild</option>
- <option>update counters</option>
- <option>suspend</option>
- <option>unsuspend</option>
- <option>delete</option>
- </select> <button> > </button></td>
- </td>
- <td style="text-align: right;"><input type="text" size="30" style="padding: 3px 80px 3px 0;"> <button> Search </button></td>
- </tr><tr>
- </tr>
- </table>
- <form id="vstobjects">
|