PATH:
home
/
centosnipponia
/
public_html
/
ticketing.nipponia.com
/
include
/
staff
<?php if(!defined('OSTSCPINC') || !$thisstaff) die('Access Denied'); // Ensure cdata UserForm::ensureDynamicDataView(); $qs = array(); $users = User::objects() ->annotate(array('ticket_count'=>SqlAggregate::COUNT('tickets'))); if ($_REQUEST['query']) { $search = $_REQUEST['query']; $filter = Q::any(array( 'emails__address__contains' => $search, 'name__contains' => $search, 'org__name__contains' => $search, )); if (UserForm::getInstance()->getField('phone')) $filter->add(array('cdata__phone__contains' => $search)); $users->filter($filter); $qs += array('query' => $_REQUEST['query']); } $sortOptions = array('name' => 'name', 'email' => 'emails__address', 'status' => 'account__status', 'create' => 'created', 'update' => 'updated'); $orderWays = array('DESC'=>'-','ASC'=>''); $sort= ($_REQUEST['sort'] && $sortOptions[strtolower($_REQUEST['sort'])]) ? strtolower($_REQUEST['sort']) : 'name'; //Sorting options... if ($sort && $sortOptions[$sort]) $order_column =$sortOptions[$sort]; $order_column = $order_column ?: 'name'; if ($_REQUEST['order'] && $orderWays[strtoupper($_REQUEST['order'])]) $order = $orderWays[strtoupper($_REQUEST['order'])]; if ($order_column && strpos($order_column,',')) $order_column = str_replace(','," $order,",$order_column); $x=$sort.'_sort'; $$x=' class="'.($order == '' ? 'asc' : 'desc').'" '; $total = $users->count(); $page=($_GET['p'] && is_numeric($_GET['p']))?$_GET['p']:1; $pageNav=new Pagenate($total,$page,PAGE_LIMIT); $pageNav->paginate($users); $qstr = '&'. Http::build_query($qs); $qs += array('sort' => $_REQUEST['sort'], 'order' => $_REQUEST['order']); $pageNav->setURL('users.php', $qs); $qstr.='&order='.($order=='-' ? 'ASC' : 'DESC'); //echo $query; $_SESSION[':Q:users'] = $users; $users->values('id', 'name', 'default_email__address', 'account__id', 'account__status', 'created', 'updated'); $users->order_by($order . $order_column); ?> <div id="basic_search"> <div style="min-height:25px;"> <form action="users.php" method="get"> <?php csrf_token(); ?> <input type="hidden" name="a" value="search"> <div class="attached input"> <!--osta--> <input type="text" class="basic-search" id="basic-user-search" name="query" placeholder="<?php echo __('Search Users'); ?>" size="30" value="<?php echo Format::htmlchars($_REQUEST['query']); ?>" autocomplete="off" autocorrect="off" autocapitalize="off"> <!-- <td> <a href="" id="advanced-user-search">[advanced]</a></td> --> <button type="submit" class="attached button"><i class="icon-search"></i> </button> </div> </form> </div> </div> <form id="users-list" action="users.php" method="POST" name="staff" > <div style="margin-bottom:20px; padding-top:5px;"> <div class="sticky bar opaque"> <div class="content"> <div class="pull-left flush-left"> <h2><?php echo __('User Directory'); ?></h2> </div> <div class="pull-right"> <?php if ($thisstaff->hasPerm(User::PERM_CREATE)) { ?> <a class="green button action-button popup-dialog" href="#users/add"> <i class="icon-plus-sign"></i> <?php echo __('Add User'); ?> </a> <a class="action-button popup-dialog" href="#users/import"> <i class="icon-upload"></i> <?php echo __('Import'); ?> </a> <?php } ?> <span class="action-button" data-dropdown="#action-dropdown-more" style="/*DELME*/ vertical-align:top; margin-bottom:0"> <i class="icon-caret-down pull-right"></i> <span ><i class="icon-cog"></i> <?php echo __('More');?></span> </span> <div id="action-dropdown-more" class="action-dropdown anchor-right"> <ul> <?php if ($thisstaff->hasPerm(User::PERM_EDIT)) { ?> <li><a href="#add-to-org" class="users-action"> <i class="icon-group icon-fixed-width"></i> <?php echo __('Add to Organization'); ?></a></li> <?php } if ('disabled' != $cfg->getClientRegistrationMode()) { ?> <li><a class="users-action" href="#reset"> <i class="icon-envelope icon-fixed-width"></i> <?php echo __('Send Password Reset Email'); ?></a></li> <?php if ($thisstaff->hasPerm(User::PERM_MANAGE)) { ?> <li><a class="users-action" href="#register"> <i class="icon-smile icon-fixed-width"></i> <?php echo __('Register'); ?></a></li> <li><a class="users-action" href="#lock"> <i class="icon-lock icon-fixed-width"></i> <?php echo __('Lock'); ?></a></li> <li><a class="users-action" href="#unlock"> <i class="icon-unlock icon-fixed-width"></i> <?php echo __('Unlock'); ?></a></li> <?php } } # end of registration-enabled if ($thisstaff->hasPerm(User::PERM_DELETE)) { ?> <li class="danger"><a class="users-action" href="#delete"> <i class="icon-trash icon-fixed-width"></i> <?php echo __('Delete'); ?></a></li> <?php } ?> </ul> </div> </div> </div> </div> </div> <div class="clear"></div> <?php $showing = $search ? __('Search Results').': ' : ''; if($users->exists(true)) $showing .= $pageNav->showing(); else $showing .= __('No users found!'); ?> <?php csrf_token(); ?> <input type="hidden" name="do" value="mass_process" > <input type="hidden" id="action" name="a" value="" > <input type="hidden" id="selected-count" name="count" value="" > <input type="hidden" id="org_id" name="org_id" value="" > <table class="list" border="0" cellspacing="1" cellpadding="0" width="940"> <thead> <tr> <th nowrap width="4%"> </th> <th><a <?php echo $name_sort; ?> href="users.php?<?php echo $qstr; ?>&sort=name"><?php echo __('Name'); ?></a></th> <th width="22%"><a <?php echo $status_sort; ?> href="users.php?<?php echo $qstr; ?>&sort=status"><?php echo __('Status'); ?></a></th> <th width="20%"><a <?php echo $create_sort; ?> href="users.php?<?php echo $qstr; ?>&sort=create"><?php echo __('Created'); ?></a></th> <th width="20%"><a <?php echo $update_sort; ?> href="users.php?<?php echo $qstr; ?>&sort=update"><?php echo __('Updated'); ?></a></th> </tr> </thead> <tbody> <?php $ids=($errors && is_array($_POST['ids']))?$_POST['ids']:null; foreach ($users as $U) { // Default to email address mailbox if no name specified if (!$U['name']) list($name) = explode('@', $U['default_email__address']); else $name = new UsersName($U['name']); // Account status if ($U['account__id']) $status = new UserAccountStatus($U['account__status']); else $status = __('Guest'); $sel=false; if($ids && in_array($U['id'], $ids)) $sel=true; ?> <tr id="<?php echo $U['id']; ?>"> <td nowrap align="center"> <!--osta--><p class="checkbox"><input type="checkbox" value="<?php echo $U['id']; ?>" class="ckb mass nowarn"/><label></label></p> </td> <td><!--osta--><a class="preview" href="users.php?id=<?php echo $U['id']; ?>" data-preview="#users/<?php echo $U['id']; ?>/preview"><?php $user_obj = User::lookup($U['id']); if ($user_obj) echo $user_obj->getAvatar(30); ?> <?php echo Format::htmlchars($name); ?></a> <?php if ($U['ticket_count']) echo sprintf('<i class="icon-fixed-width icon-file-text-alt"></i> <!--osta--> <div id="ticket-count">%d</div>', $U['ticket_count']); ?> </td> <td><?php echo $status; ?></td> <td><?php echo Format::date($U['created']); ?></td> <!--osta--> <td><?php echo Format::date($U['updated']); ?> </td> </tr> <?php } //end of foreach. ?> </tbody> <tfoot> <tr> <td colspan="7"> <?php if ($total) { ?> <?php echo __('Select');?>: <a id="selectAll" href="#ckb"><?php echo __('All');?></a> <a id="selectNone" href="#ckb"><?php echo __('None');?></a> <a id="selectToggle" href="#ckb"><?php echo __('Toggle');?></a> <?php }else{ echo '<i>'; echo __('Query returned 0 results.'); echo '</i>'; } ?> </td> </tr> </tfoot> </table> <script> // osta function myFunction(x) { if (x.matches) { // If media query matches $( "tbody tr" ).wrapInner( "<label></label>"); } else { ; } } var x = window.matchMedia("(max-width: 760px)") myFunction(x) // Call listener function at run time x.addListener(myFunction) // Attach listener function on state changes </script> <?php if ($total) { echo sprintf('<!--osta--><div id="table-foot-options"> '.__('Page').': %s <a class="no-pjax" href="users.php?a=export&qh=%s">'.__('Export').'</a></div>', $pageNav->getPageLinks(), $qhash); } ?> </form> <script type="text/javascript"> // osta if ( ($("#msg_info" ).length) || ($("#msg_notice" ).length) || ($("#msg_warning" ).length) || ($("#msg_error" ).length) ) { $(".attached.input").addClass("move-search"); //move search when msg displayed } $(function() { $('input#basic-user-search').typeahead({ source: function (typeahead, query) { $.ajax({ url: "ajax.php/users/local?q="+query, dataType: 'json', success: function (data) { typeahead.process(data); } }); }, onselect: function (obj) { window.location.href = 'users.php?id='+obj.id; }, property: "/bin/true" }); $(document).on('click', 'a.popup-dialog', function(e) { e.preventDefault(); $.userLookup('ajax.php/' + $(this).attr('href').substr(1), function (user) { var url = window.location.href; if (user && user.id) url = 'users.php?id='+user.id; $.pjax({url: url, container: '#pjax-container'}) return false; }); return false; }); var goBaby = function(action, confirmed) { var ids = [], $form = $('form#users-list'); $(':checkbox.mass:checked', $form).each(function() { ids.push($(this).val()); }); if (ids.length) { var submit = function(data) { $form.find('#action').val(action); $.each(ids, function() { $form.append($('<input type="hidden" name="ids[]">').val(this)); }); if (data) $.each(data, function() { $form.append($('<input type="hidden">').attr('name', this.name).val(this.value)); }); $form.find('#selected-count').val(ids.length); $form.submit(); }; var options = {}; if (action === 'delete') { options['deletetickets'] = __('Also delete all associated tickets and attachments'); } else if (action === 'add-to-org') { $.dialog('ajax.php/orgs/lookup/form', 201, function(xhr, json) { var $form = $('form#users-list'); try { if ($.type(json) == 'string') var json = $.parseJSON(json); var org_id = $form.find('#org_id'); if (json.id) { org_id.val(json.id); goBaby('setorg', true); } } catch (e) { } }); return; } if (!confirmed) $.confirm(__('You sure?'), undefined, options).then(function(data) { if (data === false) return false; submit(data); }); else submit(); } else { $.sysAlert(__('Oops'), __('You need to select at least one item')); } }; $(document).on('click', 'a.users-action', function(e) { e.preventDefault(); goBaby($(this).attr('href').substr(1)); return false; }); // Remove CSRF Token From GET Request document.querySelector("form[action='users.php']").onsubmit = function() { document.getElementsByName("__CSRFToken__")[0].remove(); }; }); </script>
[+]
..
[-] faq-categories.inc.php
[edit]
[-] settings-autoresp.inc.php
[edit]
[-] login.header.php
[edit]
[-] ticket-tasks.inc.php
[edit]
[-] task-view.inc.php
[edit]
[-] staff.inc.php
[edit]
[-] index.php
[edit]
[-] dynamic-list.inc.php
[edit]
[-] settings-tickets.inc.php
[edit]
[-] page.inc.php
[edit]
[-] emails.inc.php
[edit]
[-] dynamic-forms.inc.php
[edit]
[-] cannedresponses.inc.php
[edit]
[-] settings-system.inc.php
[edit]
[-] categories.inc.php
[edit]
[-] faq.inc.php
[edit]
[-] user-view.inc.php
[edit]
[-] plugin-instance.inc.php
[edit]
[-] plugin-add.inc.php
[edit]
[-] login.tpl.php
[edit]
[-] department.inc.php
[edit]
[-] syslogs.inc.php
[edit]
[-] template.inc.php
[edit]
[-] category.inc.php
[edit]
[-] ticket-relations.inc.php
[edit]
[-] header.inc.php
[edit]
[-] schedule.inc.php
[edit]
[-] faq-view.inc.php
[edit]
[-] settings-alerts.inc.php
[edit]
[-] settings-users.inc.php
[edit]
[-] pages.inc.php
[edit]
[-] slaplans.inc.php
[edit]
[-] team.inc.php
[edit]
[-] helptopics.inc.php
[edit]
[-] role.inc.php
[edit]
[-] settings-pages.inc.php
[edit]
[-] users.inc.php
[edit]
[-] faq-category.inc.php
[edit]
[-] orgs.inc.php
[edit]
[-] pwreset.sent.php
[edit]
[-] settings-agents.inc.php
[edit]
[-] settings-emails.inc.php
[edit]
[+]
osta
[-] templates.inc.php
[edit]
[-] theme.inc.php
[edit]
[-] helptopic.inc.php
[edit]
[-] profile.inc.php
[edit]
[-] email.inc.php
[edit]
[-] ticket-open.inc.php
[edit]
[-] roles.inc.php
[edit]
[-] ticket-view.inc.php
[edit]
[-] schedules.inc.php
[edit]
[-] departments.inc.php
[edit]
[-] pwreset.login.php
[edit]
[-] filter.inc.php
[edit]
[-] queues-ticket.inc.php
[edit]
[-] plugin.inc.php
[edit]
[-] slaplan.inc.php
[edit]
[-] filters.inc.php
[edit]
[-] dashboard.inc.php
[edit]
[-] pwreset.php
[edit]
[-] tpl.inc.php
[edit]
[-] cannedresponse.inc.php
[edit]
[-] dynamic-form.inc.php
[edit]
[-] teams.inc.php
[edit]
[-] dynamic-lists.inc.php
[edit]
[-] tasks.inc.php
[edit]
[-] banrule.inc.php
[edit]
[-] ticket-edit.inc.php
[edit]
[-] settings-kb.inc.php
[edit]
[-] plugins.inc.php
[edit]
[-] directory.inc.php
[edit]
[-] apikeys.inc.php
[edit]
[-] org-view.inc.php
[edit]
[-] system.inc.php
[edit]
[+]
templates
[-] staffmembers.inc.php
[edit]
[-] banlist.inc.php
[edit]
[-] footer.inc.php
[edit]
[-] settings-tasks.inc.php
[edit]
[-] apikey.inc.php
[edit]
[-] queue.inc.php
[edit]
[-] .htaccess.disabled
[edit]