forked from GNUsocial/gnu-social
add hooks for the account-management tools
This commit is contained in:
parent
4a9a5076ff
commit
48edbb3023
@ -1040,3 +1040,8 @@ EndImportActivity: when we finish importing an activity
|
|||||||
- $activity: The current activity
|
- $activity: The current activity
|
||||||
- $trusted: How "trusted" the process is
|
- $trusted: How "trusted" the process is
|
||||||
|
|
||||||
|
StartProfileSettingsActions: when we're showing account-management action list
|
||||||
|
- $action: Action being shown (use for output)
|
||||||
|
|
||||||
|
EndProfileSettingsActions: when we're showing account-management action list
|
||||||
|
- $action: Action being shown (use for output)
|
||||||
|
@ -458,6 +458,8 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||||||
|
|
||||||
$this->elementStart('div', array('id' => 'aside_primary',
|
$this->elementStart('div', array('id' => 'aside_primary',
|
||||||
'class' => 'aside'));
|
'class' => 'aside'));
|
||||||
|
$this->elementStart('ul');
|
||||||
|
if (Event::handle('StartProfileSettingsActions', array($this))) {
|
||||||
if ($user->hasRight(Right::BACKUPACCOUNT)) {
|
if ($user->hasRight(Right::BACKUPACCOUNT)) {
|
||||||
$this->elementStart('li');
|
$this->elementStart('li');
|
||||||
$this->element('a',
|
$this->element('a',
|
||||||
@ -479,6 +481,9 @@ class ProfilesettingsAction extends AccountSettingsAction
|
|||||||
_('Restore account'));
|
_('Restore account'));
|
||||||
$this->elementEnd('li');
|
$this->elementEnd('li');
|
||||||
}
|
}
|
||||||
|
Event::handle('EndProfileSettingsActions', array($this));
|
||||||
|
}
|
||||||
|
$this->elementEnd('ul');
|
||||||
$this->elementEnd('div');
|
$this->elementEnd('div');
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user