2015-08-23 22:38:18 +02:00
|
|
|
<?php
|
|
|
|
|
|
|
|
function hcard_init(&$a) {
|
|
|
|
|
|
|
|
if(argc() > 1)
|
|
|
|
$which = argv(1);
|
|
|
|
else {
|
|
|
|
notice( t('Requested profile is not available.') . EOL );
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$error = 404;
|
2015-08-23 22:38:18 +02:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
$profile = '';
|
2016-04-17 16:29:18 +02:00
|
|
|
$channel = App::get_channel();
|
2015-08-23 22:38:18 +02:00
|
|
|
|
|
|
|
if((local_channel()) && (argc() > 2) && (argv(2) === 'view')) {
|
|
|
|
$which = $channel['channel_address'];
|
|
|
|
$profile = argv(1);
|
|
|
|
$r = q("select profile_guid from profile where id = %d and uid = %d limit 1",
|
|
|
|
intval($profile),
|
|
|
|
intval(local_channel())
|
|
|
|
);
|
|
|
|
if(! $r)
|
|
|
|
$profile = '';
|
|
|
|
$profile = $r[0]['profile_guid'];
|
|
|
|
}
|
|
|
|
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . z_root() . '/feed/' . $which .'" />' . "\r\n" ;
|
2015-08-23 22:38:18 +02:00
|
|
|
|
|
|
|
if(! $profile) {
|
|
|
|
$x = q("select channel_id as profile_uid from channel where channel_address = '%s' limit 1",
|
|
|
|
dbesc(argv(1))
|
|
|
|
);
|
|
|
|
if($x) {
|
2016-04-17 16:29:18 +02:00
|
|
|
App::$profile = $x[0];
|
2015-08-23 22:38:18 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
profile_load($a,$which,$profile);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
function hcard_content(&$a) {
|
|
|
|
|
|
|
|
require_once('include/widgets.php');
|
|
|
|
return widget_profile(array());
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|