aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorredmatrix <git@macgirvin.com>2016-03-03 14:49:34 -0800
committerredmatrix <git@macgirvin.com>2016-03-03 14:49:34 -0800
commitdd4a66353af9150f418e4b0976c890923b57b04b (patch)
tree73528e3609b5b1006c259772422820d99c799483 /include
parent2cf54c465d25918d582efcf2bce0e3086d270e72 (diff)
parentd3491c9165855ac7c2f1e0243a6c796ab36f9109 (diff)
downloadvolse-hubzilla-dd4a66353af9150f418e4b0976c890923b57b04b.tar.gz
volse-hubzilla-dd4a66353af9150f418e4b0976c890923b57b04b.tar.bz2
volse-hubzilla-dd4a66353af9150f418e4b0976c890923b57b04b.zip
Merge https://github.com/redmatrix/hubzilla into pending_merge1.3
Diffstat (limited to 'include')
-rw-r--r--include/widgets.php24
1 files changed, 22 insertions, 2 deletions
diff --git a/include/widgets.php b/include/widgets.php
index 0fc10dfc0..ad54cb59e 100644
--- a/include/widgets.php
+++ b/include/widgets.php
@@ -982,14 +982,18 @@ function widget_cover_photo($arr) {
require_once('include/identity.php');
$o = '';
+ $a = get_app();
+
$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;
+ $channel_id = $a->profile_uid;
if(! $channel_id)
return '';
+ $channel = channelx_by_n($channel_id);
+
if(array_key_exists('style', $arr) && isset($arr['style']))
$style = $arr['style'];
else
@@ -1000,10 +1004,26 @@ function widget_cover_photo($arr) {
if(strpbrk($style,'(\'"<>') !== false)
$style = '';
+ if(array_key_exists('title', $arr) && isset($arr['title']))
+ $title = $arr['title'];
+ else
+ $title = $channel['channel_name'];
+
+ if(array_key_exists('subtitle', $arr) && isset($arr['subtitle']))
+ $subtitle = $arr['subtitle'];
+ else
+ $subtitle = $channel['xchan_addr'];
+
$c = get_cover_photo($channel_id,'html');
if($c) {
- $o = '<div id="cover-photo">' . (($style) ? str_replace('alt=',' style="' . $style . '" alt=',$c) : $c) . '</div>';
+ $photo_html = (($style) ? str_replace('alt=',' style="' . $style . '" alt=',$c) : $c);
+
+ $o = replace_macros(get_markup_template('cover_photo_widget.tpl'),array(
+ '$photo_html' => $photo_html,
+ '$title' => $title,
+ '$subtitle' => $subtitle,
+ ));
}
return $o;
}