aboutsummaryrefslogtreecommitdiffstats
path: root/mod
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-02-10 20:17:55 -0800
committerfriendica <info@friendica.com>2013-02-10 20:17:55 -0800
commitc42dbebd7624c78df9e2a063feda3e3fc97440b7 (patch)
treea08bac2cbf28188a3e4620f511f940ed607a0509 /mod
parent127f5a447def2abc26c3beb62446fcabd5c11d0f (diff)
downloadvolse-hubzilla-c42dbebd7624c78df9e2a063feda3e3fc97440b7.tar.gz
volse-hubzilla-c42dbebd7624c78df9e2a063feda3e3fc97440b7.tar.bz2
volse-hubzilla-c42dbebd7624c78df9e2a063feda3e3fc97440b7.zip
xchan lookup tool - provide the first few chars of an xchan and find out who it is
Diffstat (limited to 'mod')
-rw-r--r--mod/xchan.php28
1 files changed, 28 insertions, 0 deletions
diff --git a/mod/xchan.php b/mod/xchan.php
new file mode 100644
index 000000000..984a62f95
--- /dev/null
+++ b/mod/xchan.php
@@ -0,0 +1,28 @@
+<?php
+
+
+function xchan_content(&$a) {
+
+
+ $o .= '<h3>Xchan Lookup</h3>';
+
+ $o .= '<form action="xchan" method="get">';
+ $o .= 'Lookup xchan beginning with: <input type="text" style="width: 250px;" name="addr" value="' . $_GET['addr'] .'" />';
+ $o .= '<input type="submit" name="submit" value="Submit" /></form>';
+
+ $o .= '<br /><br />';
+
+ if(x($_GET,'addr')) {
+ $addr = trim($_GET['addr']);
+ $r = q("select xchan_name from xchan where xchan_hash like '%s%%'",
+ dbesc(addr)
+ );
+ if($r) {
+ foreach($r as $rr)
+ $o .= $rr['xchan_name'] . EOL;
+ }
+ else
+ notice( t('Not found.') . EOL);
+ }
+ return $o;
+}