aboutsummaryrefslogtreecommitdiffstats
path: root/mod/hcard.php
diff options
context:
space:
mode:
authorfriendica <info@friendica.com>2014-08-11 19:38:04 -0700
committerfriendica <info@friendica.com>2014-08-11 19:38:04 -0700
commit94ed44e76ebb6e1ed197411be16aa4d85f454b0a (patch)
treeb68cdc2b3b45dd5ab201b5f1a71ba75b8c011fb9 /mod/hcard.php
parent6d8fe28e79c4234bfb720ee133fe2c09cdba2f8a (diff)
downloadvolse-hubzilla-94ed44e76ebb6e1ed197411be16aa4d85f454b0a.tar.gz
volse-hubzilla-94ed44e76ebb6e1ed197411be16aa4d85f454b0a.tar.bz2
volse-hubzilla-94ed44e76ebb6e1ed197411be16aa4d85f454b0a.zip
change default invitation message
Diffstat (limited to 'mod/hcard.php')
-rw-r--r--mod/hcard.php54
1 files changed, 54 insertions, 0 deletions
diff --git a/mod/hcard.php b/mod/hcard.php
new file mode 100644
index 000000000..3cb2fa01e
--- /dev/null
+++ b/mod/hcard.php
@@ -0,0 +1,54 @@
+<?php
+
+function hcard_init(&$a) {
+
+ if(argc() > 1)
+ $which = argv(1);
+ else {
+ notice( t('Requested profile is not available.') . EOL );
+ $a->error = 404;
+ return;
+ }
+
+ $profile = '';
+ $channel = $a->get_channel();
+
+ if((local_user()) && (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_user())
+ );
+ if(! $r)
+ $profile = '';
+ $profile = $r[0]['profile_guid'];
+ }
+
+ $a->page['htmlhead'] .= '<link rel="alternate" type="application/atom+xml" href="' . $a->get_baseurl() . '/feed/' . $which .'" />' . "\r\n" ;
+
+ if(! $profile) {
+ $x = q("select channel_id as profile_uid from channel where channel_address = '%s' limit 1",
+ dbesc(argv(1))
+ );
+ if($x) {
+ $a->profile = $x[0];
+ }
+ }
+
+ profile_load($a,$which,$profile);
+
+
+}
+
+
+function hcard_content(&$a) {
+
+ require_once('include/widgets.php');
+ return widget_profile(array());
+
+
+
+}
+
+