aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--mod/manage.php12
-rw-r--r--view/css/mod_manage.css17
-rw-r--r--view/tpl/channel.tpl2
-rw-r--r--view/tpl/channels.tpl8
4 files changed, 35 insertions, 4 deletions
diff --git a/mod/manage.php b/mod/manage.php
index d29830f90..ac4454567 100644
--- a/mod/manage.php
+++ b/mod/manage.php
@@ -37,20 +37,28 @@ function manage_content(&$a) {
intval(get_account_id())
);
+ $selected_channel = null;
+
if($r && count($r)) {
$channels = $r;
- for($x = 0; $x < count($channels); $x ++)
+ for($x = 0; $x < count($channels); $x ++) {
$channels[$x]['link'] = 'manage/' . intval($channels[$x]['channel_id']);
+ if($channels[$x]['channel_id'] == local_user())
+ $selected_channel = $channels[$x];
+ $channels[$x]['primary_links'] = '1';
+ }
}
}
$links = array(
- array( 'new_channel', t('Create a new channel'), t('New Channel'))
+ array( 'new_channel', t('Create a new channel'), t('Create a new channel'))
);
$o = replace_macros(get_markup_template('channels.tpl'), array(
'$header' => t('Channel Manager'),
+ '$msg_selected' => t('Current Channel'),
+ '$selected' => $selected_channel,
'$desc' => t('Attach to one of your channels by selecting it.'),
'$msg_primary' => t('Default Channel'),
'$msg_make_primary' => t('Make Default'),
diff --git a/view/css/mod_manage.css b/view/css/mod_manage.css
index 5f06e5064..921ddfc8f 100644
--- a/view/css/mod_manage.css
+++ b/view/css/mod_manage.css
@@ -1,14 +1,29 @@
-
+#channels-selected {
+ margin-top: 20px;
+ margin-bottom: 10px;
+}
#channels-desc {
+ color: #888888;
+ font-size: 1.2em;
margin-top: 15px;
margin-bottom: 20px;
}
+.channel-selection-primary {
+ font-size: 0.8em;
+ margin-bottom: 10px;
+}
+
.channel-selection {
width: 120px;
float: left;
}
.channels-end {
clear: both;
+}
+
+.channel-selection-name-link {
+ font-size: 1.2em;
+ margin-top: 10px;
} \ No newline at end of file
diff --git a/view/tpl/channel.tpl b/view/tpl/channel.tpl
index 9c8ded1d9..5bae5ba33 100644
--- a/view/tpl/channel.tpl
+++ b/view/tpl/channel.tpl
@@ -1,9 +1,11 @@
<div class="channel-selection">
+{{ if $channel.primary_links }}
{{ if $channel.channel_primary }}
<div class="channel-selection-primary primary">$msg_primary</div>
{{ else }}
<div class="channel-selection-primary"><a href="manage/$channel.channel_id/primary">$msg_make_primary</a></div>
{{ endif }}
+{{ endif }}
<a href="$channel.link" class="channel-selection-photo-link" title="$channel.channel_name"><img class="channel-photo" src="$channel.xchan_photo_m" alt="$channel.channel_name" /></a>
<a href="$channel.link" class="channel-selection-name-link" title="$channel.channel_name"><div class="channel-name">$channel.channel_name</div></a>
</div>
diff --git a/view/tpl/channels.tpl b/view/tpl/channels.tpl
index 50366efa6..916ba1c75 100644
--- a/view/tpl/channels.tpl
+++ b/view/tpl/channels.tpl
@@ -7,10 +7,16 @@
{{ endfor }}
{{ endif }}
+{{ if $selected }}
+<div id="channels-selected">$msg_selected</div>
+{{ inc channel.tpl with $channel=$selected }}{{ endinc }}
+<div class="channels-end selected"></div>
+{{ endif }}
+
<div id="channels-desc" class="descriptive-text">$desc</div>
{{ for $all_channels as $chn }}
{{ inc channel.tpl with $channel=$chn }}{{ endinc }}
{{ endfor }}
-<div class="channels-end"></div>
+<div class="channels-end all"></div>