mirror of https://github.com/4xmen/xshop.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
70 lines
1.5 KiB
PHP
70 lines
1.5 KiB
PHP
<?php
|
|
|
|
namespace App\Observers;
|
|
|
|
use App\Models\Part;
|
|
|
|
class PartObsever
|
|
{
|
|
/**
|
|
* Handle the Part "created" event.
|
|
*/
|
|
public function created(Part $part): void
|
|
{
|
|
// run on add for new
|
|
$className= ucfirst($part->part);
|
|
$handle = "\\Resources\\Views\\Segments\\$className";
|
|
$handle::onAdd($part);
|
|
}
|
|
|
|
/**
|
|
* Handle the Part "updated" event.
|
|
*/
|
|
public function updated(Part $part): void
|
|
{
|
|
// remove old part add new part
|
|
|
|
if ($part->isDirty('part')){
|
|
$p = clone $part;
|
|
$p->part = $part->getOriginal('part');
|
|
$classNameOld = ucfirst($part->getOriginal('part'));
|
|
$handleOld = "\\Resources\\Views\\Segments\\$classNameOld";
|
|
$handleOld::onRemove($p);
|
|
|
|
$className = $part->part;
|
|
$className= ucfirst($part->part);
|
|
$handle = "\\Resources\\Views\\Segments\\$className";
|
|
$handle::onAdd($part);
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Handle the Part "deleted" event.
|
|
*/
|
|
public function deleted(Part $part): void
|
|
{
|
|
// remove part
|
|
$className= ucfirst($part->part);
|
|
$handle = "\\Resources\\Views\\Segments\\$className";
|
|
$handle::onRemove($part);
|
|
}
|
|
|
|
/**
|
|
* Handle the Part "restored" event.
|
|
*/
|
|
public function restored(Part $part): void
|
|
{
|
|
//
|
|
}
|
|
|
|
/**
|
|
* Handle the Part "force deleted" event.
|
|
*/
|
|
public function forceDeleted(Part $part): void
|
|
{
|
|
//
|
|
}
|
|
}
|