Add support for user autocomplete

This commit is contained in:
Michael Gapczynski 2011-07-24 15:47:37 -04:00
parent 17b5bcb24f
commit 4282a42b3f
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,23 @@
<?php
$RUNTIME_NOAPPS = true;
require_once('../../../lib/base.php');
if( !OC_USER::isLoggedIn()){
echo json_encode( array( "status" => "error", "data" => array( "message" => "Authentication error" )));
exit();
}
$query = $_GET['term'];
$length = strlen($query);
$query = strtolower($query);
$users = array();
$ocusers = OC_USER::getUsers();
$self = OC_USER::getUser();
foreach ($ocusers as $user) {
if ($user != $self && substr(strtolower($user), 0, $length) == $query) {
$users[] = (object)array('id' => $user, 'label' => $user, 'name' => $user);
}
}
echo json_encode($users);
?>

View File

@ -3,6 +3,10 @@ $(document).ready(function() {
source: "../../files/ajax/autocomplete.php",
minLength: 1
});
$( "#uid_shared_with" ).autocomplete({
source: "ajax/userautocomplete.php",
minLength: 1
});
$("button.delete").live('click', function( event ) {
event.preventDefault();
// var row=$(this);