summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 9e6f645)
raw | patch | inline | side by side (parent: 9e6f645)
author | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Aug 2009 07:39:28 +0000 (07:39 +0000) | ||
committer | cajus <cajus@594d385d-05f5-0310-b6e9-bd551577e9d8> | |
Fri, 7 Aug 2009 07:39:28 +0000 (07:39 +0000) |
git-svn-id: https://oss.gonicus.de/repositories/gosa/trunk@13991 594d385d-05f5-0310-b6e9-bd551577e9d8
gosa-core/html/autocomplete.php | [new file with mode: 0644] | patch | blob |
gosa-core/html/getFAIstatus.php | patch | blob | history |
diff --git a/gosa-core/html/autocomplete.php b/gosa-core/html/autocomplete.php
--- /dev/null
@@ -0,0 +1,54 @@
+<?php
+/*
+ * This code is part of GOsa (http://www.gosa-project.org)
+ * Copyright (C) 2003-2008 GONICUS GmbH
+ *
+ * ID: $$Id: getbin.php 9255 2008-03-03 16:04:30Z cajus $$
+ *
+ * This program is free software; you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
+ */
+
+/* Basic setup, remove eventually registered sessions */
+@require_once ("../include/php_setup.inc");
+@require_once ("functions.inc");
+
+session::start();
+session::global_set('errorsAlreadyPosted',array());
+
+/* Logged in? Simple security check */
+if (!session::global_is_set('ui')){
+ new log("security","unknown","",array(),"Error: autocomplete.php called without session") ;
+ header ("Location: index.php");
+ exit;
+}
+
+if(isset($_POST['NAME'])){
+
+ /* Get configuration from session */
+ $config= $_SESSION['ui'];
+ $ldap= $config->get_ldap_link();
+ $ldap->cd($config->current['BASE']);
+ $n= normalizeLDAP($_POST['NAME']);
+ $res= $ldap->search ("(&(objectClass=gosaAccount)(cn=*$n*)(givenName=*$n*)(sn=*$n*)(uid=*$n*))", array("cn"));
+
+ echo '<ul>';
+ foreach($res as $attrs){
+ echo '<li>'.$line['cn'][0].'</li>';
+ }
+ echo '</ul>';
+}
+
+
+?>
index 42d67404a46f2450f2de94550e9a6ceff20dcbcf..c0b6ec2f013bb212057be2ebf84f9ecf67b21c4f 100644 (file)
/* Logged in? Simple security check */
if (!session::global_is_set('ui')){
- new log("security","unknown","",array(),"Error: getbin.php called without session") ;
+ new log("security","unknown","",array(),"Error: getFAIstatus.php called without session") ;
header ("Location: index.php");
exit;
}