summaryrefslogtreecommitdiff
path: root/find_user.php
diff options
context:
space:
mode:
authorbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:36:24 +0000
committerbitweaver.org <bitweaver@users.sourceforge.net>2005-06-19 04:36:24 +0000
commitcf071b67f1000864b864aedb3e294cbaf0509f73 (patch)
tree641097ba8de3271ac243806c9ec90b1237e8c9f6 /find_user.php
downloadfisheye-cf071b67f1000864b864aedb3e294cbaf0509f73.tar.gz
fisheye-cf071b67f1000864b864aedb3e294cbaf0509f73.tar.bz2
fisheye-cf071b67f1000864b864aedb3e294cbaf0509f73.zip
IMPORT TikiPro CLYDE FINAL
Diffstat (limited to 'find_user.php')
-rw-r--r--find_user.php21
1 files changed, 21 insertions, 0 deletions
diff --git a/find_user.php b/find_user.php
new file mode 100644
index 0000000..16d10a0
--- /dev/null
+++ b/find_user.php
@@ -0,0 +1,21 @@
+<?php
+include_once( "../bit_setup_inc.php" );
+
+if (empty($gBitLoc['styleSheet'])) {
+ $gBitLoc['styleSheet'] = $gBitSystem->getStyleCss();
+}
+$gBitLoc['browserStyleSheet'] = $gBitSystem->getBrowserStyleCss();
+$gBitLoc['customStyleSheet'] = $gBitSystem->getCustomStyleCss();
+$gBitLoc['THEMES_STYLE_URL'] = $gBitSystem->getStyleUrl();
+
+if (!empty($_REQUEST['submitUserSearch'])) {
+ $searchParams = array('find' => $_REQUEST['find']);
+ $gBitUser->getList($searchParams);
+ $foundUsers = $searchParams['data'];
+} else {
+ $foundUsers = NULL;
+}
+$smarty->assign_by_ref('foundUsers', $foundUsers);
+
+$smarty->display('bitpackage:fisheye/find_user.tpl');
+?>