forked from GNUsocial/gnu-social
Added event hooks at the start and end of groups mini list
This commit is contained in:
parent
11750e832f
commit
15574c59de
@ -790,6 +790,12 @@ StartShowSubscriptionsMiniList: at the start of subscriptions mini list
|
|||||||
EndShowSubscriptionsMiniList: at the end of subscriptions mini list
|
EndShowSubscriptionsMiniList: at the end of subscriptions mini list
|
||||||
- $action: the current action
|
- $action: the current action
|
||||||
|
|
||||||
|
StartShowGroupsMiniList: at the start of groups mini list
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
|
EndShowGroupsMiniList: at the end of groups mini list
|
||||||
|
- $action: the current action
|
||||||
|
|
||||||
StartDeleteUserForm: starting the data in the form for deleting a user
|
StartDeleteUserForm: starting the data in the form for deleting a user
|
||||||
- $action: action being shown
|
- $action: action being shown
|
||||||
- $user: user being deleted
|
- $user: user being deleted
|
||||||
|
@ -105,7 +105,6 @@ class ProfileAction extends OwnerDesignAction
|
|||||||
|
|
||||||
$this->elementStart('div', array('id' => 'entity_subscriptions',
|
$this->elementStart('div', array('id' => 'entity_subscriptions',
|
||||||
'class' => 'section'));
|
'class' => 'section'));
|
||||||
|
|
||||||
if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
|
if (Event::handle('StartShowSubscriptionsMiniList', array($this))) {
|
||||||
$this->element('h2', null, _('Subscriptions'));
|
$this->element('h2', null, _('Subscriptions'));
|
||||||
|
|
||||||
@ -229,7 +228,7 @@ class ProfileAction extends OwnerDesignAction
|
|||||||
|
|
||||||
$this->elementStart('div', array('id' => 'entity_groups',
|
$this->elementStart('div', array('id' => 'entity_groups',
|
||||||
'class' => 'section'));
|
'class' => 'section'));
|
||||||
|
if (Event::handle('StartShowGroupsMiniList', array($this))) {
|
||||||
$this->element('h2', null, _('Groups'));
|
$this->element('h2', null, _('Groups'));
|
||||||
|
|
||||||
if ($groups) {
|
if ($groups) {
|
||||||
@ -249,6 +248,8 @@ class ProfileAction extends OwnerDesignAction
|
|||||||
$this->elementEnd('p');
|
$this->elementEnd('p');
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Event::handle('EndShowGroupsMiniList', array($this));
|
||||||
|
}
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user