diff options
author | Sarven Capadisli <csarven@status.net> | 2010-02-13 18:40:36 +0100 |
---|---|---|
committer | Sarven Capadisli <csarven@status.net> | 2010-02-13 18:40:36 +0100 |
commit | fc19179bc54de1837bbc64f052a93628be9c6a3d (patch) | |
tree | 8b077887a04ed668859e671b215ec63334d85971 /lib/userprofile.php | |
parent | f3a82e787c70e8cf749c79f22fe37ce6c9c9d4d3 (diff) |
Added event hook to remote subscription
Diffstat (limited to 'lib/userprofile.php')
-rw-r--r-- | lib/userprofile.php | 9 |
1 files changed, 6 insertions, 3 deletions
diff --git a/lib/userprofile.php b/lib/userprofile.php index 07e575085..43dfd05be 100644 --- a/lib/userprofile.php +++ b/lib/userprofile.php @@ -238,9 +238,12 @@ class UserProfile extends Widget if (Event::handle('StartProfilePageActionsElements', array(&$this->out, $this->profile))) { if (empty($cur)) { // not logged in - $this->out->elementStart('li', 'entity_subscribe'); - $this->showRemoteSubscribeLink(); - $this->out->elementEnd('li'); + if (Event::handle('StartProfileRemoteSubscribe', array(&$this->out, $this->profile))) { + $this->out->elementStart('li', 'entity_subscribe'); + $this->showRemoteSubscribeLink(); + $this->out->elementEnd('li'); + Event::handle('EndProfileRemoteSubscribe', array(&$this->out, $this->profile)); + } } else { if ($cur->id == $this->profile->id) { // your own page $this->out->elementStart('li', 'entity_edit'); |