Add icon to restore activity
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
0d33302350
commit
55cd351324
2 changed files with 6 additions and 3 deletions
|
@ -113,11 +113,11 @@ class Provider implements IProvider {
|
|||
return $this->parseLongVersion($event, $previousEvent);
|
||||
}
|
||||
|
||||
protected function setIcon(IEvent $event, $icon) {
|
||||
protected function setIcon(IEvent $event, string $icon, string $app = 'files') {
|
||||
if ($this->activityManager->getRequirePNG()) {
|
||||
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', $icon . '.png')));
|
||||
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon . '.png')));
|
||||
} else {
|
||||
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath('files', $icon . '.svg')));
|
||||
$event->setIcon($this->url->getAbsoluteURL($this->url->imagePath($app, $icon . '.svg')));
|
||||
}
|
||||
}
|
||||
|
||||
|
@ -142,6 +142,7 @@ class Provider implements IProvider {
|
|||
$this->setIcon($event, 'delete-color');
|
||||
} else if ($event->getSubject() === 'restored_by') {
|
||||
$subject = $this->l->t('Restored by {user}');
|
||||
$this->setIcon($event, 'actions/history', 'core');
|
||||
} else if ($event->getSubject() === 'renamed_by') {
|
||||
$subject = $this->l->t('Renamed by {user}');
|
||||
$this->setIcon($event, 'change');
|
||||
|
@ -214,8 +215,10 @@ class Provider implements IProvider {
|
|||
$this->setIcon($event, 'delete-color');
|
||||
} else if ($event->getSubject() === 'restored_self') {
|
||||
$subject = $this->l->t('You restored {file}');
|
||||
$this->setIcon($event, 'actions/history', 'core');
|
||||
} else if ($event->getSubject() === 'restored_by') {
|
||||
$subject = $this->l->t('{user} restored {file}');
|
||||
$this->setIcon($event, 'actions/history', 'core');
|
||||
} else if ($event->getSubject() === 'renamed_self') {
|
||||
$subject = $this->l->t('You renamed {oldfile} to {newfile}');
|
||||
$this->setIcon($event, 'change');
|
||||
|
|
BIN
core/img/actions/history.png
Normal file
BIN
core/img/actions/history.png
Normal file
Binary file not shown.
After Width: | Height: | Size: 358 B |
Loading…
Reference in a new issue