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.
34 lines
952 B
PHP
34 lines
952 B
PHP
<?php
|
|
|
|
namespace Resources\Views\Segments;
|
|
|
|
use App\Models\Part;
|
|
use App\Models\Setting;
|
|
use Illuminate\Support\Facades\File;
|
|
|
|
class LoginBigBg
|
|
{
|
|
public static function onAdd(Part $part = null)
|
|
{
|
|
$setting = new Setting();
|
|
$setting->section = 'theme';
|
|
$setting->key = $part->area->name . '_' . $part->part.'_jpg';
|
|
$setting->value = null;
|
|
$setting->type = 'FILE';
|
|
$setting->size = 12;
|
|
$setting->title = $part->area->name . ' ' . $part->part.' background image';
|
|
$setting->save();
|
|
|
|
File::copy(__DIR__.'/../../default-assets/bg-girl.jpg',public_path('upload/images/').$part->area->name . '.' . $part->part.'.jpg');
|
|
}
|
|
public static function onRemove(Part $part = null)
|
|
{
|
|
Setting::where('key',$part->area->name . '_' . $part->part.'_jpg')->first()?->delete();
|
|
|
|
}
|
|
public static function onMount(Part $part = null)
|
|
{
|
|
return $part;
|
|
}
|
|
}
|