aboutsummaryrefslogtreecommitdiffstats
path: root/include/widgets.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-11-22 12:26:04 -0800
committerfriendica <info@friendica.com>2014-11-22 12:26:04 -0800
commitb16f93883077a3637d055a4c70a28ef0c994efec (patch)
tree8182991580db2190f7ab81270d7398089abd2911 /include/widgets.php
parentc785b5a90cbc1b5b62e95794cb001abc7609dc12 (diff)
downloadvolse-hubzilla-b16f93883077a3637d055a4c70a28ef0c994efec.tar.gz
volse-hubzilla-b16f93883077a3637d055a4c70a28ef0c994efec.tar.bz2
volse-hubzilla-b16f93883077a3637d055a4c70a28ef0c994efec.zip
random block widget
Diffstat (limited to 'include/widgets.php')
-rw-r--r--include/widgets.php41
1 files changed, 41 insertions, 0 deletions
diff --git a/include/widgets.php b/include/widgets.php
index 076a8fa91..a25139558 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -874,3 +874,44 @@ function widget_photo_rand($arr) {
return $o;
}
+
+
+function widget_random_block($arr) {
+
+ $channel_id = 0;
+ if(array_key_exists('channel_id',$arr) && intval($arr['channel_id']))
+ $channel_id = intval($arr['channel_id']);
+ if(! $channel_id)
+ $channel_id = get_app()->profile_uid;
+ if(! $channel_id)
+ return '';
+
+ if(array_key_exists('contains',$arr))
+ $contains = $arr['contains'];
+
+ $o = '';
+
+ require_once('include/security.php');
+ $sql_options = item_permissions_sql($channel_id);
+
+ $randfunc = db_getfunc('RAND');
+
+ $r = q("select item.* from item left join item_id on item.id = item_id.iid
+ where item.uid = %d and sid like '%s' and service = 'BUILDBLOCK' and
+ item_restrict = %d $sql_options order by $randfunc limit 1",
+ intval($channel_id),
+ dbesc('%' . $contains . '%'),
+ intval(ITEM_BUILDBLOCK)
+ );
+
+ if($r) {
+ $o = '<div class="widget bblock">';
+ if($r[0]['title'])
+ $o .= '<h3>' . $r[0]['title'] . '</h3>';
+ $o .= prepare_text($r[0]['body'],$r[0]['mimetype']);
+ $o .= '</div>';
+
+ }
+ return $o;
+
+} \ No newline at end of file