aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2013-12-10 20:36:11 -0800
committerfriendica <info@friendica.com>2013-12-10 20:36:11 -0800
commite5ea4a009b81c7f3fa987ba34d20a996055775d6 (patch)
tree3c5a659f1d45ddb4e3d6228ba8161f7133df4873 /include/widgets.php
parent6e4f9b7ecc42b7196a41c32d1f2a68e4e029ee04 (diff)
downloadvolse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.gz
volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.tar.bz2
volse-hubzilla-e5ea4a009b81c7f3fa987ba34d20a996055775d6.zip
mod channel is now Comanchified
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php31
1 files changed, 31 insertions, 0 deletions
diff --git a/include/widgets.php b/include/widgets.php
index e0fc94e18..cea5a6ce2 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -196,6 +196,7 @@ function widget_savedsearch($arr) {
$hasq = ((strpos($srchurl,'?') !== false) ? true : false);
$srchurl = rtrim(preg_replace('/search\=[^\&].*?(\&|$)/is','',$srchurl),'&');
+ $srchurl = str_replace(array('?f=','&f='),array('',''),$srchurl);
$hasq = ((strpos($srchurl,'?') !== false) ? true : false);
$o = '';
@@ -285,6 +286,7 @@ function widget_archive($arr) {
$wall = ((array_key_exists('wall', $arr)) ? intval($arr['wall']) : 0);
$url = z_root() . '/' . $a->cmd;
+
$ret = posted_dates($uid,$wall);
if(! count($ret))
@@ -300,3 +302,32 @@ function widget_archive($arr) {
}
+function widget_fullprofile($arr) {
+ $a = get_app();
+ if(! $a->profile['profile_uid'])
+ return;
+
+ $block = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
+
+ return profile_sidebar($a->profile, $block);
+}
+
+function widget_categories($arr) {
+ $a = get_app();
+ $cat = ((x($_REQUEST,'cat')) ? htmlspecialchars($_REQUEST['cat']) : '');
+ $srchurl = $a->query_string;
+ $srchurl = rtrim(preg_replace('/cat\=[^\&].*?(\&|$)/is','',$srchurl),'&');
+ $srchurl = str_replace(array('?f=','&f='),array('',''),$srchurl);
+ return categories_widget($srchurl,$cat);
+
+}
+
+function widget_tagcloud_wall($arr) {
+ $a = get_app();
+ if((! $a->profile['profile_uid']) || (! $a->profile['channel_hash']))
+ return '';
+ $limit = ((array_key_exists('limit',$arr)) ? intval($arr['limit']) : 50);
+ if(feature_enabled($a->profile['profile_uid'],'tagadelic'))
+ return tagblock('search',$a->profile['profile_uid'],$limit,$a->profile['channel_hash'],ITEM_WALL);
+ return '';
+} \ No newline at end of file