mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-26 00:03:16 +00:00
Add AvatarObserver
This commit is contained in:
parent
03cf26a09a
commit
db22469f06
1 changed files with 75 additions and 0 deletions
75
app/Observers/AvatarObserver.php
Normal file
75
app/Observers/AvatarObserver.php
Normal file
|
@ -0,0 +1,75 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
namespace App\Observers;
|
||||||
|
|
||||||
|
use App\Avatar;
|
||||||
|
|
||||||
|
class AvatarObserver
|
||||||
|
{
|
||||||
|
/**
|
||||||
|
* Handle the avatar "created" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function created(Avatar $avatar)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the avatar "updated" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function updated(Avatar $avatar)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the avatar "deleted" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function deleted(Avatar $avatar)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the avatar "deleting" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function deleting(Avatar $avatar)
|
||||||
|
{
|
||||||
|
$path = storage_path('app/'.$avatar->media_path);
|
||||||
|
@unlink($path);
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the avatar "restored" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function restored(Avatar $avatar)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Handle the avatar "force deleted" event.
|
||||||
|
*
|
||||||
|
* @param \App\Avatar $avatar
|
||||||
|
* @return void
|
||||||
|
*/
|
||||||
|
public function forceDeleted(Avatar $avatar)
|
||||||
|
{
|
||||||
|
//
|
||||||
|
}
|
||||||
|
}
|
Loading…
Reference in a new issue