-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace chosen with select2 to provide ajaxified user and group selec…
…tion for files_external, fixes #7499 remove minified select2 js show avatars for users, simpler results remove unneeded users and groups from settings template fix css, escape user and group names
- Loading branch information
Showing
8 changed files
with
190 additions
and
65 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<?php | ||
|
||
OCP\JSON::checkAppEnabled('files_external'); | ||
OCP\JSON::callCheck(); | ||
|
||
OCP\JSON::checkAdminUser(); | ||
|
||
$pattern = ''; | ||
$limit = null; | ||
$offset = null; | ||
if (isset($_GET['pattern'])) { | ||
$pattern = $_GET['pattern']; | ||
} | ||
if (isset($_GET['limit'])) { | ||
$limit = $_GET['limit']; | ||
} | ||
if (isset($_GET['offset'])) { | ||
$offset = $_GET['offset']; | ||
} | ||
|
||
$groups = \OC_Group::getGroups($pattern, $limit, $offset); | ||
$users = \OCP\User::getDisplayNames($pattern, $limit, $offset); | ||
|
||
$results = array('groups' => $groups, 'users' => $users); | ||
|
||
\OCP\JSON::success($results); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters