diff options
author | Mario Vavti <mario@mariovavti.com> | 2018-03-08 08:55:25 +0100 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2018-03-08 08:55:25 +0100 |
commit | f3a753bda603595fcff25a8e4fa9131e56872f57 (patch) | |
tree | 318837a058d3594c974e101c93af04cc6155a52b /Zotlabs/Module | |
parent | 17c102ebe115bd8272da830bf9523b691ce115ee (diff) | |
parent | 1700aedbed9050ca2eee621c04c29e5b34150bc5 (diff) | |
download | volse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.tar.gz volse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.tar.bz2 volse-hubzilla-f3a753bda603595fcff25a8e4fa9131e56872f57.zip |
Merge remote-tracking branch 'mike/master' into dev
Diffstat (limited to 'Zotlabs/Module')
-rw-r--r-- | Zotlabs/Module/Hashtags.php | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/Zotlabs/Module/Hashtags.php b/Zotlabs/Module/Hashtags.php new file mode 100644 index 000000000..edb631871 --- /dev/null +++ b/Zotlabs/Module/Hashtags.php @@ -0,0 +1,27 @@ +<?php + +namespace Zotlabs\Module; + + +class Hashtags extends \Zotlabs\Web\Controller { + + function init() { + $result = []; + + $t = escape_tags($_REQUEST['t']); + if(! $t) + json_return_and_die($result); + + $r = q("select distinct(term) from term where term like '%s' and ttype = %d order by term", + dbesc($t . '%'), + intval(TERM_HASHTAG) + ); + if($r) { + foreach($r as $rv) { + $result[] = [ 'text' => strtolower($rv['term']) ]; + } + } + + json_return_and_die($result); + } +}
\ No newline at end of file |