aboutsummaryrefslogtreecommitdiffstats
path: root/mod/profile.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2012-09-25 21:35:35 -0700
committerfriendica <info@friendica.com>2012-09-25 21:35:35 -0700
commitba4fe4ff919fa3250db33eee2425870f10107e81 (patch)
treebee66979ee5fa4457f77abff71236fd5c10f0a35 /mod/profile.php
parent85f9d89a89c25c7a5bb2dd948931e36af5ac0d4c (diff)
downloadvolse-hubzilla-ba4fe4ff919fa3250db33eee2425870f10107e81.tar.gz
volse-hubzilla-ba4fe4ff919fa3250db33eee2425870f10107e81.tar.bz2
volse-hubzilla-ba4fe4ff919fa3250db33eee2425870f10107e81.zip
allow themes to add to and/or completely over-ride the module sidebar
Diffstat (limited to 'mod/profile.php')
-rw-r--r--mod/profile.php27
1 files changed, 13 insertions, 14 deletions
diff --git a/mod/profile.php b/mod/profile.php
index aaa324078..4351c607a 100644
--- a/mod/profile.php
+++ b/mod/profile.php
@@ -2,23 +2,27 @@
function profile_init(&$a) {
+ $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;
+
+}
+
+
+function profile_aside(&$a) {
+
require_once('include/contact_widgets.php');
+ require_once('include/items.php');
if(! x($a->page,'aside'))
$a->page['aside'] = '';
- $blocked = (((get_config('system','block_public')) && (! local_user()) && (! remote_user())) ? true : false);
-
if(argc() > 1)
$which = argv(1);
else {
- logger('profile error: mod_profile ' . $a->query_string, LOGGER_DEBUG);
notice( t('Requested profile is not available.') . EOL );
$a->error = 404;
return;
}
-
$profile = 0;
$channel = $a->get_channel();
@@ -27,9 +31,12 @@ function profile_init(&$a) {
$profile = argv(1);
}
+ $cat = ((x($_REQUEST,'cat')) ? htmlspecialchars($_REQUEST['cat']) : '');
+
profile_load($a,$which,$profile);
- $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;
+ $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
+ $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$cat);
}
@@ -46,17 +53,11 @@ function profile_content(&$a, $update = 0) {
else
$datequery = escape_tags(argv($x));
}
- else
- $category = argv($x);
}
}
- if(! x($category)) {
- $category = ((x($_GET,'category')) ? $_GET['category'] : '');
- }
-
if(get_config('system','block_public') && (! get_account_id()) && (! remote_user())) {
- return login();
+ return login();
}
require_once("include/bbcode.php");
@@ -146,8 +147,6 @@ function profile_content(&$a, $update = 0) {
$celeb = ((($a->profile['page-flags'] == PAGE_SOAPBOX) || ($a->profile['page-flags'] == PAGE_COMMUNITY)) ? true : false);
- $a->page['aside'] .= posted_date_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],$a->profile['profile_uid'],true);
- $a->page['aside'] .= categories_widget($a->get_baseurl(true) . '/profile/' . $a->profile['nickname'],(x($category) ? xmlify($category) : ''));
if(can_write_wall($a,$a->profile['profile_uid'])) {