Linux anchor 4.4.0-210-generic #242-Ubuntu SMP Fri Apr 16 09:57:56 UTC 2021 x86_64
Apache/2.4.18 (Ubuntu)
Server IP : 10.10.100.4 & Your IP : 216.73.217.150
Domains :
Cant Read [ /etc/named.conf ]
User : www-data
Terminal
Auto Root
Create File
Create Folder
Localroot Suggester
Backdoor Destroyer
Readme
/
var /
www /
owncloud-prm /
settings /
js /
users /
Delete
Unzip
Name
Size
Permission
Date
Action
deleteHandler.js
5.81
KB
-rw-r--r--
2018-04-19 18:15
filter.js
1.95
KB
-rw-r--r--
2018-04-19 18:15
groups.js
8.84
KB
-rw-r--r--
2018-04-19 18:15
users.js
31.92
KB
-rw-r--r--
2018-04-19 18:15
Save
Rename
/** * Copyright (c) 2014, Arthur Schiwon <blizzz@owncloud.com> * This file is licensed under the Affero General Public License version 3 or later. * See the COPYING-README file. */ /** * @brief this object takes care of the filter functionality on the user * management page * @param {UserList} userList the UserList object * @param {GroupList} groupList the GroupList object */ function UserManagementFilter (userList, groupList) { this.userList = userList; this.groupList = groupList; this.oldFilter = ''; this.init(); } /** * @brief sets up when the filter action shall be triggered */ UserManagementFilter.prototype.init = function () { OC.Plugins.register('OCA.Search', this); }; /** * @brief the filter action needs to be done, here the accurate steps are being * taken care of */ UserManagementFilter.prototype.run = _.debounce(function (filter) { if (filter === this.oldFilter) { return; } this.oldFilter = filter; this.userList.filter = filter; this.userList.empty(); this.userList.update(GroupList.getCurrentGID()); if (this.groupList.filterGroups) { // user counts are being updated nevertheless this.groupList.empty(); } this.groupList.update(); }, 300 ); /** * @brief returns the filter String * @returns string */ UserManagementFilter.prototype.getPattern = function () { var input = this.filterInput.val(), html = $('html'), isIE8or9 = html.hasClass('lte9'); // FIXME - TODO - once support for IE8 and IE9 is dropped if (isIE8or9 && input == this.filterInput.attr('placeholder')) { input = ''; } return input; }; /** * @brief adds reset functionality to an HTML element * @param jQuery the jQuery representation of that element */ UserManagementFilter.prototype.addResetButton = function (button) { var umf = this; button.click(function () { umf.filterInput.val(''); umf.run(); }); }; UserManagementFilter.prototype.attach = function (search) { search.setFilter('settings', this.run.bind(this)); };