diff options
author | zotlabs <mike@macgirvin.com> | 2017-03-15 20:11:28 -0700 |
---|---|---|
committer | Mario Vavti <mario@mariovavti.com> | 2017-03-29 11:50:03 +0200 |
commit | f60309efa12be3b8d4f5b2c565ebdf7f051a987d (patch) | |
tree | 3e5669efa5d3842e7127aa486bb59568be5930f6 /Zotlabs/Widget/Appcategories.php | |
parent | 47f4007951ce3311ee267a863a2cc46085c4892a (diff) | |
download | volse-hubzilla-f60309efa12be3b8d4f5b2c565ebdf7f051a987d.tar.gz volse-hubzilla-f60309efa12be3b8d4f5b2c565ebdf7f051a987d.tar.bz2 volse-hubzilla-f60309efa12be3b8d4f5b2c565ebdf7f051a987d.zip |
more widget migrations
Diffstat (limited to 'Zotlabs/Widget/Appcategories.php')
-rw-r--r-- | Zotlabs/Widget/Appcategories.php | 49 |
1 files changed, 49 insertions, 0 deletions
diff --git a/Zotlabs/Widget/Appcategories.php b/Zotlabs/Widget/Appcategories.php new file mode 100644 index 000000000..490ec1abc --- /dev/null +++ b/Zotlabs/Widget/Appcategories.php @@ -0,0 +1,49 @@ +<?php + +namespace Zotlabs\Widget; + +class Appcategories { + + function widget($arr) { + + if(! local_channel()) + return ''; + + $selected = ((x($_REQUEST,'cat')) ? htmlspecialchars($_REQUEST['cat'],ENT_COMPAT,'UTF-8') : ''); + + // @FIXME ??? $srchurl undefined here - commented out until is reviewed + //$srchurl = rtrim(preg_replace('/cat\=[^\&].*?(\&|$)/is','',$srchurl),'&'); + //$srchurl = str_replace(array('?f=','&f='),array('',''),$srchurl); + + // Leaving this line which negates the effect of the two invalid lines prior + $srchurl = z_root() . '/apps'; + + $terms = array(); + + $r = q("select distinct(term.term) + from term join app on term.oid = app.id + where app_channel = %d + and term.uid = app_channel + and term.otype = %d + and term.term != 'nav_featured_app' + order by term.term asc", + intval(local_channel()), + intval(TERM_OBJ_APP) + ); + + if($r) { + foreach($r as $rr) + $terms[] = array('name' => $rr['term'], 'selected' => (($selected == $rr['term']) ? 'selected' : '')); + + return replace_macros(get_markup_template('categories_widget.tpl'),array( + '$title' => t('Categories'), + '$desc' => '', + '$sel_all' => (($selected == '') ? 'selected' : ''), + '$all' => t('Everything'), + '$terms' => $terms, + '$base' => $srchurl, + + )); + } + } +} |