aboutsummaryrefslogtreecommitdiffstats
path: root/mod/xchan.php
blob: e51cc53ccc22c1ebf5eed1c7c90231bfb0ad11d3 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
<?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 * from xchan where xchan_hash like '%s%%'",
			dbesc($addr)
		);

		if($r) {
			foreach($r as $rr)
				$o .= str_replace("\n","<br />",print_r($rr,true)) . EOL;
		}
		else
			notice( t('Not found.') . EOL);

		$r = q("select * from hubloc where hubloc_hash like '%s%%'",
			dbesc($addr)
		);

		if($r) {
			foreach($r as $rr)
				$o .= str_replace("\n","<br />",print_r($rr,true)) . EOL;

		}


	}	
	return $o;
}